Bug 318459: [BUGZILLA] mozbot fails to report certain changes

Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=colin
This commit is contained in:
mkanat%kerio.com 2005-12-01 22:33:29 +00:00
Родитель 1eed63ef89
Коммит d857f48688
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -332,9 +332,9 @@ sub parse_mail ($) {
$bug_info{'who'} = $1;
}
elsif ( my ($comment_line) =
grep /^-* Additional Comments From /, @body_lines )
grep /^-+.*Comment.*From /i, @body_lines )
{
$comment_line =~ /^-* Additional Comments From (\S+) /;
$comment_line =~ /^-+.*Comment.*From (\S+) /i;
$bug_info{'who'} = $1;
} else {
debug_print("Could not determine who made the change.");