]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Added "sanity check" to the list of things the maintainer gets to
authorterry%mozilla.org <>
Sat, 15 Jan 2000 07:30:24 +0000 (07:30 +0000)
committerterry%mozilla.org <>
Sat, 15 Jan 2000 07:30:24 +0000 (07:30 +0000)
choose from in the footer.

CGI.pl

diff --git a/CGI.pl b/CGI.pl
index fb293645b8f6aad2aacc5fb123bb43423bb9cc10..40f36160565e811cee7a196f365b167f21b4f615 100644 (file)
--- a/CGI.pl
+++ b/CGI.pl
@@ -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";