[Rt-commit] r3369 - in rt/branches/3.5-TESTING: . lib/RT/Action

jesse at bestpractical.com jesse at bestpractical.com
Sun Jul 3 18:59:28 EDT 2005


Author: jesse
Date: Sun Jul  3 18:59:27 2005
New Revision: 3369

Modified:
   rt/branches/3.5-TESTING/   (props changed)
   rt/branches/3.5-TESTING/lib/RT/Action/SendEmail.pm
Log:
 r22223 at hualien:  jesse | 2005-07-03 18:24:31 -0400
  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/3.5-TESTING/lib/RT/Action/SendEmail.pm
==============================================================================
--- rt/branches/3.5-TESTING/lib/RT/Action/SendEmail.pm	(original)
+++ rt/branches/3.5-TESTING/lib/RT/Action/SendEmail.pm	Sun Jul  3 18:59:27 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