summaryrefslogtreecommitdiffstats
path: root/CGI.pl
diff options
context:
space:
mode:
authordave%intrec.com <>2000-09-07 15:22:10 +0200
committerdave%intrec.com <>2000-09-07 15:22:10 +0200
commit72e109eb2a3b81c5e5b79f15b5c3fc74475bdd9e (patch)
tree62f2d2c793a13a040618f68e8c020ced85e73555 /CGI.pl
parent7732262bf6787ac884d93657ab3313389c353526 (diff)
downloadbugzilla-72e109eb2a3b81c5e5b79f15b5c3fc74475bdd9e.tar.gz
bugzilla-72e109eb2a3b81c5e5b79f15b5c3fc74475bdd9e.tar.xz
Fix for bug 51508: Unclosed <NOBR> around named queries in command menu.
Patch by john.beranek@pace.co.uk (John Beranek)
Diffstat (limited to 'CGI.pl')
-rw-r--r--CGI.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/CGI.pl b/CGI.pl
index 1ee02e2d6..4b85caec6 100644
--- a/CGI.pl
+++ b/CGI.pl
@@ -936,7 +936,7 @@ sub GetCommandMenu {
"WHERE userid = $userid AND linkinfooter");
while (MoreSQLData()) {
my ($name, $query) = (FetchSQLData());
- $html .= qq{ | <A HREF="buglist.cgi?$query"><NOBR>$name</A>};
+ $html .= qq{ | <A HREF="buglist.cgi?$query"><NOBR>$name</NOBR></A>};
}
$html .= " | <NOBR>Edit <a href='userprefs.cgi'>prefs</a></NOBR>";
if (UserInGroup("tweakparams")) {