]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Whoops; left out the "mailto:" part of a mailto link.
authorterry%mozilla.org <>
Sat, 11 Mar 2000 02:26:23 +0000 (02:26 +0000)
committerterry%mozilla.org <>
Sat, 11 Mar 2000 02:26:23 +0000 (02:26 +0000)
globals.pl

index 954c559719579b94561720fca06c7bb0dcb83cc8..98a72a9a36b6e9d42c8f45bd8e3e66849c2404ee 100644 (file)
@@ -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";
         }