Backing out Gerv's checkin for bug 71840. Per the bug report, it did not have proper review first, and myk objected to what

got landed on irc.
This commit is contained in:
justdave%syndicomm.com 2001-10-12 03:03:00 +00:00
Родитель 7b28f2ac9f
Коммит e6fe9a6c8b
2 изменённых файлов: 11 добавлений и 27 удалений

Просмотреть файл

@ -569,7 +569,7 @@ if ( Param("move-enabled") && (defined $::COOKIE{"Bugzilla_login"}) && ($::COOKI
print "<BR></FORM>";
print "
<table><tr><td align=left><B><a name=\"0\" href=\"#0\">Description:</a></B></td>
<table><tr><td align=left><B>Description:</B></td>
<td align=right width=100%>Opened: $bug{'creation_ts'}</td></tr></table>
<HR>
";

Просмотреть файл

@ -884,22 +884,6 @@ sub quoteUrls {
$things[$count++] = $item;
}
# Either a comment string or no comma and a compulsory #.
while ($text =~ s/\bbug(\s|%\#)*(\d+)(\s*comment)?\s*(\s|%\#)(\d+)/"##$count##"/ei) {
my $item = $&;
my $bugnum = $2;
my $comnum = $6;
$item = GetBugLink($bugnum, $item);
$item =~ s/(id=\d+)/$1#$comnum/;
$things[$count++] = $item;
}
while ($text =~ s/\bcom(ment)?(\s|%\#)*(\d+)/"##$count##"/ei) {
my $item = $&;
my $num = $3;
$item = value_quote($item);
$item = qq{<A HREF="#$num">$item</A>};
$things[$count++] = $item;
}
while ($text =~ s/\bbug(\s|%\#)*(\d+)/"##$count##"/ei) {
my $item = $&;
my $num = $2;
@ -1056,16 +1040,16 @@ sub GetLongDescriptionAsHTML {
my ($who, $email, $when, $text) = (FetchSQLData());
$email .= Param('emailsuffix');
if ($count) {
$result .= "<BR><BR><I>------- Additional Comment <a name='$count' href='#$count'>#$count</a> From ";
if ($who) {
$result .= qq{<A HREF="mailto:$email">$who</A> } .
time2str("%Y-%m-%d %H:%M", str2time($when));
} else {
$result .= qq{<A HREF="mailto:$email">$email</A> } .
time2str("%Y-%m-%d %H:%M", str2time($when));
}
$result .= " -------</I><BR>\n";
$result .= "<BR><BR><I>------- Additional Comments From ";
if ($who) {
$result .= qq{<A HREF="mailto:$email">$who</A> } .
time2str("%Y-%m-%d %H:%M", str2time($when)) .
" -------</I><BR>\n";
} else {
$result .= qq{<A HREF="mailto:$email">$email</A> } .
time2str("%Y-%m-%d %H:%M", str2time($when)) .
" -------</I><BR>\n";
}
}
$result .= "<PRE>" . quoteUrls(\%knownattachments, $text) . "</PRE>\n";
$count++;