Fix for bug 74529: backward email filtering fixed. patch by jake@acutex.net

This commit is contained in:
dave%intrec.com 2001-04-03 20:54:53 +00:00
Родитель 7df2479737
Коммит c31f922554
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -684,7 +684,7 @@ sub getEmailAttributes ($@) {
if ( $commentField =~ /Created an attachment \(/ ) {
push (@flags, 'Attachments');
}
elsif ( ($commentField ne '') && (scalar(@flags) == 1) && ($flags[0] eq 'Resolved')) {
elsif ( ($commentField ne '') && !(scalar(@flags) == 1 && $flags[0] eq 'Resolved')) {
push (@flags, 'Comments');
}