diff options
author | bryce-mozilla%nextbus.com <> | 1999-05-12 11:31:35 +0000 |
---|---|---|
committer | bryce-mozilla%nextbus.com <> | 1999-05-12 11:31:35 +0000 |
commit | 8beccefaea956f9ace010f11765e99df8baaad84 (patch) | |
tree | 20cf44e31c1fa39ed0a32a0b27ecc92cb5f135fb /long_list.cgi | |
parent | Oops; back out last change; was checked in by mistake (and with the wrong log... (diff) | |
download | bugzilla-8beccefaea956f9ace010f11765e99df8baaad84.tar.gz bugzilla-8beccefaea956f9ace010f11765e99df8baaad84.tar.bz2 bugzilla-8beccefaea956f9ace010f11765e99df8baaad84.zip |
Make URL an actual link
Diffstat (limited to 'long_list.cgi')
-rwxr-xr-x | long_list.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/long_list.cgi b/long_list.cgi index 723aa2cf3..69546119f 100755 --- a/long_list.cgi +++ b/long_list.cgi @@ -93,7 +93,8 @@ foreach my $bug (split(/:/, $::FORM{'buglist'})) { if (Param("usetargetmilestone")) { print "<TD><B>Target milestone:</B>$target_milestone\n"; } - print "<TR><TD COLSPAN=6><B>URL:</B> " . html_quote($url) . "\n"; + print "<TR><TD COLSPAN=6><B>URL:</B> "; + print "<A HREF=\"" . $url . "\">" . html_quote($url) . "</A>\n"; print "<TR><TD COLSPAN=6><B>Summary:</B> " . html_quote($shortdesc) . "\n"; if (Param("usestatuswhiteboard")) { print "<TR><TD COLSPAN=6><B>Status Whiteboard:" . |