From: John Graham-C. <jgr...@us...> - 2006-02-07 18:51:34
|
Update of /cvsroot/popfile/engine/Classifier In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16886/Classifier Modified Files: Tag: b0_22_2 MailParse.pm Log Message: Suppress useless warning Index: MailParse.pm =================================================================== RCS file: /cvsroot/popfile/engine/Classifier/MailParse.pm,v retrieving revision 1.216.4.4 retrieving revision 1.216.4.5 diff -C2 -d -r1.216.4.4 -r1.216.4.5 *** MailParse.pm 6 Feb 2006 19:33:32 -0000 1.216.4.4 --- MailParse.pm 7 Feb 2006 18:51:24 -0000 1.216.4.5 *************** *** 2409,2413 **** my ( $attachment, $filename ) = $self->match_attachment_filename( $params ); ! if ( $attachment eq 'attachment' ) { $self->add_attachment_filename( $filename ) ; } --- 2409,2413 ---- my ( $attachment, $filename ) = $self->match_attachment_filename( $params ); ! if ( defined( $attachment ) && ( $attachment eq 'attachment' ) ) { $self->add_attachment_filename( $filename ) ; } |