]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
fix for 35604: indicate on bug lists if a bug is not visible to the public
authorcyeh%bluemartini.com <>
Fri, 1 Sep 2000 04:53:29 +0000 (04:53 +0000)
committercyeh%bluemartini.com <>
Fri, 1 Sep 2000 04:53:29 +0000 (04:53 +0000)
patch submitted by dave@intrec.com (Dave Miller), legend added
by cyeh@bluemartini.com

buglist.cgi

index 13261e927f16a0e5a52a4d1c58d97239b5d131fb..adc6c36eda9e974a972e32c5deaa093c949a3da4 100755 (executable)
@@ -1093,7 +1093,9 @@ while (@row = FetchSQLData()) {
             pnl "<input type=checkbox name=id_$bug_id>";
         }
         pnl "<A HREF=\"show_bug.cgi?id=$bug_id\">";
-        pnl "$bug_id</A> ";
+        pnl "$bug_id</A>";
+        if ($g != "0") { pnl "*"; }
+        pnl " ";
         foreach my $c (@collist) {
             if (exists $::needquote{$c}) {
                 my $value = shift @row;
@@ -1167,6 +1169,10 @@ print "
 <CENTER>
 <B>" .  time2str("%a %b %e %T %Z %Y", time()) . "</B>";
 
+if (Param('usebuggroups')) {
+   print "<BR>* next to a bug number notes a bug not visible to everyone.<BR>";
+}
+
 if (defined $::FORM{'debug'}) {
     print "<P><CODE>" . value_quote($query) . "</CODE><P>\n";
 }