From: cyeh%bluemartini.com <> Date: Fri, 1 Sep 2000 04:53:29 +0000 (+0000) Subject: fix for 35604: indicate on bug lists if a bug is not visible to the public X-Git-Tag: bugzilla-2.12~181 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f472f34b29502cb27e82172d7e2181703e0708f1;p=thirdparty%2Fbugzilla.git fix for 35604: indicate on bug lists if a bug is not visible to the public patch submitted by dave@intrec.com (Dave Miller), legend added by cyeh@bluemartini.com --- diff --git a/buglist.cgi b/buglist.cgi index 13261e927f..adc6c36eda 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -1093,7 +1093,9 @@ while (@row = FetchSQLData()) { pnl ""; } pnl ""; - pnl "$bug_id "; + pnl "$bug_id"; + if ($g != "0") { pnl "*"; } + pnl " "; foreach my $c (@collist) { if (exists $::needquote{$c}) { my $value = shift @row; @@ -1167,6 +1169,10 @@ print "
" . value_quote($query) . "
\n"; }