From f472f34b29502cb27e82172d7e2181703e0708f1 Mon Sep 17 00:00:00 2001 From: "cyeh%bluemartini.com" <> Date: Fri, 1 Sep 2000 04:53:29 +0000 Subject: [PATCH] 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 --- buglist.cgi | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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 "
" . time2str("%a %b %e %T %Z %Y", time()) . ""; +if (Param('usebuggroups')) { + print "
* next to a bug number notes a bug not visible to everyone.
"; +} + if (defined $::FORM{'debug'}) { print "

" . value_quote($query) . "

\n"; } -- 2.47.2