summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
authorterry%mozilla.org <>2000-03-11 03:26:23 +0100
committerterry%mozilla.org <>2000-03-11 03:26:23 +0100
commitca172d996e3994ef21fa45a80ffb339398f31a60 (patch)
tree2ac42e1583f9a50eaeb2d1b7a0aef02e49532086 /globals.pl
parent658f2f569dfb06448d7f45c370e7a1b468dd36a2 (diff)
downloadbugzilla-ca172d996e3994ef21fa45a80ffb339398f31a60.tar.gz
bugzilla-ca172d996e3994ef21fa45a80ffb339398f31a60.tar.xz
Whoops; left out the "mailto:" part of a mailto link.
Diffstat (limited to 'globals.pl')
-rw-r--r--globals.pl6
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";
}