diff options
author | terry%netscape.com <> | 1998-11-21 04:18:33 +0100 |
---|---|---|
committer | terry%netscape.com <> | 1998-11-21 04:18:33 +0100 |
commit | 89eccc9b74482b8c636a02d3a6bcf3ec2947eb7b (patch) | |
tree | 235232c5fcc2e5d1fb13ad91e8b44da262c2a3f3 /sanitycheck.cgi | |
parent | 3789246e0d115ebd9b0f280c8fa209a690e425fe (diff) | |
download | bugzilla-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-x | sanitycheck.cgi | 3 |
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>"; } |