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

jesse at bestpractical.com jesse at bestpractical.com
Sun Jul 3 18:57:47 EDT 2005


Author: jesse
Date: Sun Jul  3 18:57:46 2005
New Revision: 3359

Modified:
   rt/branches/3.5-TESTING/   (props changed)
   rt/branches/3.5-TESTING/lib/RT/Action/Notify.pm
Log:
 r22213 at hualien:  jesse | 2005-07-03 18:23:42 -0400
  r22137 at hualien:  jesse | 2005-07-03 17:48:05 -0400
   r20732 at hualien:  jesse | 2005-06-16 12:43:57 -0400
    r20716 at hualien:  jesse | 2005-06-16 12:23:58 -0400
     r20713 at hualien:  jesse | 2005-06-16 12:16:28 -0400
      r20711 at hualien (orig r3204):  alexmv | 2005-06-16 04:31:40 -0400
       r4308 at zoq-fot-pik:  chmrr | 2005-06-16 04:31:30 -0400
        * Missed an lc
      
     
    
   
  
 


Modified: rt/branches/3.5-TESTING/lib/RT/Action/Notify.pm
==============================================================================
--- rt/branches/3.5-TESTING/lib/RT/Action/Notify.pm	(original)
+++ rt/branches/3.5-TESTING/lib/RT/Action/Notify.pm	Sun Jul  3 18:57:46 2005
@@ -158,9 +158,9 @@
         @{ $self->{'Bcc'} } = @Bcc;
     }
     else {
-        @{ $self->{'To'} }  = grep ( lc $_ ne $creator, @To );
-        @{ $self->{'Cc'} }  = grep ( lc $_ ne $creator, @Cc );
-        @{ $self->{'Bcc'} } = grep ( lc $_ ne $creator, @Bcc );
+        @{ $self->{'To'} }  = grep ( lc $_ ne lc $creator, @To );
+        @{ $self->{'Cc'} }  = grep ( lc $_ ne lc $creator, @Cc );
+        @{ $self->{'Bcc'} } = grep ( lc $_ ne lc $creator, @Bcc );
     }
     @{ $self->{'PseudoTo'} } = @PseudoTo;
 


More information about the Rt-commit mailing list