summaryrefslogtreecommitdiffstats
path: root/doeditvotes.cgi
diff options
context:
space:
mode:
authormyk%mozilla.org <>2001-10-16 08:02:48 +0200
committermyk%mozilla.org <>2001-10-16 08:02:48 +0200
commitddd4b5c459fe379562752b928abea2a9b878eb5e (patch)
tree34a8f8bed2399a91e7ca95aebc92636087be8387 /doeditvotes.cgi
parent729242dbf8a8e224f2a1f5580fbd972bb18646f0 (diff)
downloadbugzilla-ddd4b5c459fe379562752b928abea2a9b878eb5e.tar.gz
bugzilla-ddd4b5c459fe379562752b928abea2a9b878eb5e.tar.xz
Fix for bug 98146.
Patch by Gerv <gerv@mozilla.org>. r=myk, no second review needed.
Diffstat (limited to 'doeditvotes.cgi')
-rwxr-xr-xdoeditvotes.cgi8
1 files changed, 5 insertions, 3 deletions
diff --git a/doeditvotes.cgi b/doeditvotes.cgi
index 75208ce35..ab3ae14b6 100755
--- a/doeditvotes.cgi
+++ b/doeditvotes.cgi
@@ -84,9 +84,11 @@ my $who = DBNameToIdAndCheck($::COOKIE{'Bugzilla_login'});
if ( (! defined $who) || (!$who) ) {
PutHeader("Bad login.");
- print "The login info got confused. If you want to adjust the votes\n";
- print "for <tt>$::COOKIE{'Bugzilla_login'}</tt>, then please\n";
- print "<a href=showvotes.cgi?user=$who>click here</a>.<hr>\n";
+ print qq|
+ The login info got confused. Please
+ <a href="http://bugzilla.mozilla.org/query.cgi?GoAheadAndLogIn=1">log in</a>
+ (again) and try again.\n
+ |;
PutFooter();
exit();
}