Commit ca172d99 authored by terry%mozilla.org's avatar terry%mozilla.org

Whoops; left out the "mailto:" part of a mailto link.

parent 658f2f56
...@@ -655,7 +655,7 @@ sub GetLongDescriptionAsText { ...@@ -655,7 +655,7 @@ sub GetLongDescriptionAsText {
if ($start && $start =~ /[1-9]/) { if ($start && $start =~ /[1-9]/) {
# If the start is all zeros, then don't do this (because we want to # 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'"; $query .= "AND longdescs.bug_when > '$start'";
$count = 1; $count = 1;
} }
...@@ -697,7 +697,7 @@ sub GetLongDescriptionAsHTML { ...@@ -697,7 +697,7 @@ sub GetLongDescriptionAsHTML {
if ($start && $start =~ /[1-9]/) { if ($start && $start =~ /[1-9]/) {
# If the start is all zeros, then don't do this (because we want to # 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'"; $query .= "AND longdescs.bug_when > '$start'";
$count = 1; $count = 1;
} }
...@@ -711,7 +711,7 @@ sub GetLongDescriptionAsHTML { ...@@ -711,7 +711,7 @@ sub GetLongDescriptionAsHTML {
my ($who, $when, $text) = (FetchSQLData()); my ($who, $when, $text) = (FetchSQLData());
if ($count) { if ($count) {
$result .= "<BR><BR><I>------- Additional Comments From " . $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)) . time2str("%Y-%m-%d %H:%M", str2time($when)) .
" -------</I><BR>\n"; " -------</I><BR>\n";
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment