Closed
Bug 104177
Opened 24 years ago
Closed 24 years ago
typo in CGI.pl breaks keywords (editkeywords.cgi) link in footer
Categories
(Bugzilla :: Bugzilla-General, defect)
Tracking
()
RESOLVED
FIXED
Bugzilla 2.16
People
(Reporter: mattdm, Assigned: kiko)
Details
(Keywords: regression)
Attachments
(1 file)
1021 bytes,
patch
|
jacob
:
review+
jacob
:
review+
|
Details | Diff | Splinter Review |
In current CVS in CGI.pl in sub GetCommandMenu
if (UserInGroup("editkeywords")) {
$html .= ", <a href=\"editkeywords\".cgi>keywords</a>\n";
}
Should be
if (UserInGroup("editkeywords")) {
$html .= ", <a href=\"editkeywords.cgi\">keywords</a>\n";
}
Assignee | ||
Comment 1•24 years ago
|
||
This is a regression from bug 103554 being checked in. Sorry.
Assignee: justdave → kiko
Assignee | ||
Comment 2•24 years ago
|
||
Assignee | ||
Updated•24 years ago
|
Comment 3•24 years ago
|
||
Comment on attachment 53125 [details] [diff] [review]
kiko_v1: fix quote, indent one section that was horked.
r=jake (x2)
Attachment #53125 -
Flags: review+
Comment 4•24 years ago
|
||
/cvsroot/mozilla/webtools/bugzilla/CGI.pl,v <-- CGI.pl
new revision: 1.109; previous revision: 1.108
done
Updated•24 years ago
|
Target Milestone: --- → Bugzilla 2.16
Updated•12 years ago
|
QA Contact: matty_is_a_geek → default-qa
You need to log in
before you can comment on or make changes to this bug.
Description
•