summaryrefslogtreecommitdiffstats
path: root/show_bug.cgi
diff options
context:
space:
mode:
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 cc568fbce..e9bf7fe43 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 });
}
}
}