aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2012-09-20 21:01:34 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2012-09-20 21:01:34 +0200
commit94fe787c15da745f28eeda1b77baad05964d3456 (patch)
tree6898bdf6759a84b16faed21a212bce6a9bdb57cf /show_bug.cgi
parentBug 450546: Use visible_bugs() where appropriate instead of/in combination wi... (diff)
downloadbugzilla-94fe787c15da745f28eeda1b77baad05964d3456.tar.gz
bugzilla-94fe787c15da745f28eeda1b77baad05964d3456.tar.bz2
bugzilla-94fe787c15da745f28eeda1b77baad05964d3456.zip
Fix bustage
Diffstat (limited to 'show_bug.cgi')
-rwxr-xr-xshow_bug.cgi3
1 files changed, 2 insertions, 1 deletions
diff --git a/show_bug.cgi b/show_bug.cgi
index a94617c1c..10d35956d 100755
--- a/show_bug.cgi
+++ b/show_bug.cgi
@@ -83,7 +83,8 @@ if ($single) {
push(@bugs, $bug);
}
else {
- push(@illegal_bugs, { bug_id => $bug->id, error => 'NotPermitted' });
+ my $error = 'NotPermitted'; # Trick to make 012throwables.t happy.
+ push(@illegal_bugs, { bug_id => $bug->id, error => $error });
}
}
}