summaryrefslogtreecommitdiffstats
path: root/sanitycheck.cgi
diff options
context:
space:
mode:
authorterry%netscape.com <>1998-11-21 04:18:33 +0100
committerterry%netscape.com <>1998-11-21 04:18:33 +0100
commit89eccc9b74482b8c636a02d3a6bcf3ec2947eb7b (patch)
tree235232c5fcc2e5d1fb13ad91e8b44da262c2a3f3 /sanitycheck.cgi
parent3789246e0d115ebd9b0f280c8fa209a690e425fe (diff)
downloadbugzilla-89eccc9b74482b8c636a02d3a6bcf3ec2947eb7b.tar.gz
bugzilla-89eccc9b74482b8c636a02d3a6bcf3ec2947eb7b.tar.xz
Backed out Andrew's patch -- turns out it was doing quoting sublty wrong.
Diffstat (limited to 'sanitycheck.cgi')
-rwxr-xr-xsanitycheck.cgi3
1 files changed, 1 insertions, 2 deletions
diff --git a/sanitycheck.cgi b/sanitycheck.cgi
index 102e017b7..814a1f031 100755
--- a/sanitycheck.cgi
+++ b/sanitycheck.cgi
@@ -18,7 +18,6 @@
# Netscape Communications Corporation. All Rights Reserved.
#
# Contributor(s): Terry Weissman <terry@mozilla.org>
-# Andrew Anderson <andrew@redhat.com>
use diagnostics;
use strict;
@@ -43,7 +42,7 @@ sub Alert {
sub BugLink {
my ($id) = (@_);
- return "<a href=\"show_bug.cgi?id=$id\">$id</a>";
+ return "<a href='show_bug.cgi?id=$id'>$id</a>";
}