diff options
author | terry%mozilla.org <> | 2000-01-15 08:30:24 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-01-15 08:30:24 +0100 |
commit | 9bbdda136b57645dfa871b01cb2daa5c1ab19850 (patch) | |
tree | b3da3e26eaa82a0de69d62ddac63f7459f797ca7 | |
parent | ec6c3ff41cd0e12d5d6e14fe81782bd6ab3fbef8 (diff) | |
download | bugzilla-9bbdda136b57645dfa871b01cb2daa5c1ab19850.tar.gz bugzilla-9bbdda136b57645dfa871b01cb2daa5c1ab19850.tar.xz |
Added "sanity check" to the list of things the maintainer gets to
choose from in the footer.
-rw-r--r-- | CGI.pl | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -816,7 +816,7 @@ sub GetCommandMenu { my %substs; $substs{'userid'} = $::COOKIE{"Bugzilla_login"}; my $mybugsurl = PerformSubsts($mybugstemplate, \%substs); - $html = $html . " | <a href='$mybugsurl'>My Bugs</a>"; + $html = $html . " | <a href='$mybugsurl'>My bugs</a>"; } $html = $html . " | <a href=\"createaccount.cgi\"><NOBR>New account</NOBR></a>\n"; @@ -833,6 +833,7 @@ sub GetCommandMenu { $html .= "| <NOBR>Edit <a href='changepassword.cgi'>prefs</a></NOBR>"; if (UserInGroup("tweakparams")) { $html .= ", <a href=editparams.cgi>parameters</a>"; + $html .= ", <a href=sanitycheck.cgi><NOBR>sanity check</NOBR></a>"; } if (UserInGroup("editcomponents")) { $html .= ", <a href=editproducts.cgi>components</a>\n"; |