summaryrefslogtreecommitdiffstats
path: root/CGI.pl
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2001-09-06 11:19:04 +0200
committerjustdave%syndicomm.com <>2001-09-06 11:19:04 +0200
commit8173dcf5af3241159ea823d347e22996253cbad5 (patch)
tree9a0e9df96c52e02538e1ee22193467df1a04a5d2 /CGI.pl
parent27697cf31c96221bd3e90f48593532e3a697ecd1 (diff)
downloadbugzilla-8173dcf5af3241159ea823d347e22996253cbad5.tar.gz
bugzilla-8173dcf5af3241159ea823d347e22996253cbad5.tar.xz
Fix for bug 69616: If you have tweakparams privs, the "Sanity check" link was listed with a group of items that said "Edit" so
it appeared as if you were going to edit the sanity checks if you clicked on it, when in fact you were going to run them. This patch rewords the links so Sanity check is in a group by itself in the block of links on the right. Patch by Matthew Tuck <matty@chariot.net.au> r= justdave x2
Diffstat (limited to 'CGI.pl')
-rw-r--r--CGI.pl5
1 files changed, 4 insertions, 1 deletions
diff --git a/CGI.pl b/CGI.pl
index 6bcb1ba02..3c0795d44 100644
--- a/CGI.pl
+++ b/CGI.pl
@@ -1285,7 +1285,6 @@ Actions:
$html .= "</TD><TD>&nbsp;</TD><TD VALIGN=middle><NOBR>Edit <a href='userprefs.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("editusers") || $blessgroupset) {
$html .= ", <a href=editusers.cgi>users</a>";
@@ -1301,6 +1300,10 @@ Actions:
if (UserInGroup("editkeywords")) {
$html .= ", <a href=editkeywords.cgi>keywords</a>";
}
+ if (UserInGroup("tweakparams")) {
+ $html .= " | <a href=sanitycheck.cgi><NOBR>Sanity check</NOBR></a>";
+ }
+
$html .= " | <NOBR><a href=relogin.cgi>Log out</a> $::COOKIE{'Bugzilla_login'}</NOBR>";
$html .= "</TD></TR>";