diff options
Diffstat (limited to 'sanitycheck.cgi')
-rwxr-xr-x | sanitycheck.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sanitycheck.cgi b/sanitycheck.cgi index 814a1f031..102e017b7 100755 --- a/sanitycheck.cgi +++ b/sanitycheck.cgi @@ -18,6 +18,7 @@ # Netscape Communications Corporation. All Rights Reserved. # # Contributor(s): Terry Weissman <terry@mozilla.org> +# Andrew Anderson <andrew@redhat.com> use diagnostics; use strict; @@ -42,7 +43,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>"; } |