From: terry%mozilla.org <>
Date: Sat, 11 Mar 2000 02:26:23 +0000 (+0000)
Subject: Whoops; left out the "mailto:" part of a mailto link.
X-Git-Tag: bugzilla-2.12~346
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca172d996e3994ef21fa45a80ffb339398f31a60;p=thirdparty%2Fbugzilla.git
Whoops; left out the "mailto:" part of a mailto link.
---
diff --git a/globals.pl b/globals.pl
index 954c559719..98a72a9a36 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 .= "
------- Additional Comments From " .
- qq{$who } .
+ qq{$who } .
time2str("%Y-%m-%d %H:%M", str2time($when)) .
" -------
\n";
}