Bug 326070 bonsai mailto: highlighting is too greedy

r=lpsolit
This commit is contained in:
timeless%mozdev.org 2006-02-06 16:55:46 +00:00
Родитель 1967a9a5a6
Коммит a49d6d8bf6
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1156,7 +1156,7 @@ sub MarkUpText {
$bugsrpl = PerformSubsts($bugsrpl, \%substs);
$text =~ s{((ftp|http)://\S*[^\s.])}{<a href=\"$1\">$1</a>}g;
$text =~ s/(&lt;(.*@.*)&gt;)/<a href=\"mailto:$2\">$1<\/a>/g;
$text =~ s/(&lt;(\S+@\S+)&gt;)/<a href=\"mailto:$2\">$1<\/a>/g;
$bugsmatch = 2
unless ($bugsmatch =~ /^\+?\d+$/);