diff options
author | terry%mozilla.org <> | 2000-03-11 02:26:23 +0000 |
---|---|---|
committer | terry%mozilla.org <> | 2000-03-11 02:26:23 +0000 |
commit | ca172d996e3994ef21fa45a80ffb339398f31a60 (patch) | |
tree | 2ac42e1583f9a50eaeb2d1b7a0aef02e49532086 | |
parent | 658f2f569dfb06448d7f45c370e7a1b468dd36a2 (diff) | |
download | bugs-ca172d996e3994ef21fa45a80ffb339398f31a60.tar bugs-ca172d996e3994ef21fa45a80ffb339398f31a60.tar.gz bugs-ca172d996e3994ef21fa45a80ffb339398f31a60.tar.bz2 bugs-ca172d996e3994ef21fa45a80ffb339398f31a60.tar.xz bugs-ca172d996e3994ef21fa45a80ffb339398f31a60.zip |
Whoops; left out the "mailto:" part of a mailto link.
-rw-r--r-- | globals.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/globals.pl b/globals.pl index 954c55971..98a72a9a3 100644 --- a/globals.pl +++ b/globals.pl @@ -655,7 +655,7 @@ sub GetLongDescriptionAsText { if ($start && $start =~ /[1-9]/) { # If the start is all zeros, then don't do this (because we want to - # not emit a leading "Addition Comments" line in that case.) + # not emit a leading "Additional Comments" line in that case.) $query .= "AND longdescs.bug_when > '$start'"; $count = 1; } @@ -697,7 +697,7 @@ sub GetLongDescriptionAsHTML { if ($start && $start =~ /[1-9]/) { # If the start is all zeros, then don't do this (because we want to - # not emit a leading "Addition Comments" line in that case.) + # not emit a leading "Additional Comments" line in that case.) $query .= "AND longdescs.bug_when > '$start'"; $count = 1; } @@ -711,7 +711,7 @@ sub GetLongDescriptionAsHTML { my ($who, $when, $text) = (FetchSQLData()); if ($count) { $result .= "<BR><BR><I>------- Additional Comments From " . - qq{<A HREF="$who">$who</A> } . + qq{<A HREF="mailto:$who">$who</A> } . time2str("%Y-%m-%d %H:%M", str2time($when)) . " -------</I><BR>\n"; } |