[Rt-commit] r3332 - in rt/branches/CHALDEA-EXPERIMENTAL: .
lib/RT/Action
jesse at bestpractical.com
jesse at bestpractical.com
Sun Jul 3 18:11:56 EDT 2005
Author: jesse
Date: Sun Jul 3 18:11:55 2005
New Revision: 3332
Modified:
rt/branches/CHALDEA-EXPERIMENTAL/ (props changed)
rt/branches/CHALDEA-EXPERIMENTAL/lib/RT/Action/SendEmail.pm
Log:
r22147 at hualien: jesse | 2005-07-03 17:50:17 -0400
r22099 at hualien: jesse | 2005-07-03 16:26:16 -0400
r21522 at hualien: jesse | 2005-06-23 19:49:51 -0400
* Some warning avoidance in Action/SendEmail.pm
Modified: rt/branches/CHALDEA-EXPERIMENTAL/lib/RT/Action/SendEmail.pm
==============================================================================
--- rt/branches/CHALDEA-EXPERIMENTAL/lib/RT/Action/SendEmail.pm (original)
+++ rt/branches/CHALDEA-EXPERIMENTAL/lib/RT/Action/SendEmail.pm Sun Jul 3 18:11:55 2005
@@ -722,9 +722,9 @@
my $attachments = $self->TransactionObj->Message;
if ( my $top = $attachments->First() ) {
- @in_reply_to = split(/\s+/m, $top->GetHeader('In-Reply-To') );
- @references = split(/\s+/m, $top->GetHeader('References') );
- @msgid = split(/\s+/m,$top->GetHeader('Message-Id'));
+ @in_reply_to = split(/\s+/m, $top->GetHeader('In-Reply-To') ||'');
+ @references = split(/\s+/m, $top->GetHeader('References')||'' );
+ @msgid = split(/\s+/m,$top->GetHeader('Message-Id') || '');
}
else {
return (undef);
More information about the Rt-commit
mailing list