From: Frédéric Buclin Date: Thu, 20 Sep 2012 19:02:35 +0000 (+0200) Subject: Fix bustage X-Git-Tag: bugzilla-4.5.1~384 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ebb96a0742e949cd4cb63ab6ae1be158283ef34;p=thirdparty%2Fbugzilla.git Fix bustage --- diff --git a/show_bug.cgi b/show_bug.cgi index cc568fbce3..e9bf7fe43d 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 }); } } }