Commit f472f34b authored by cyeh%bluemartini.com's avatar cyeh%bluemartini.com

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
parent b640b5e9
......@@ -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";
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment