[Rt-commit] r3211 - in rt/branches/3.4-RELEASE: . lib/RT/Action
jesse at bestpractical.com
jesse at bestpractical.com
Thu Jun 16 12:39:49 EDT 2005
Author: jesse
Date: Thu Jun 16 12:39:48 2005
New Revision: 3211
Modified:
rt/branches/3.4-RELEASE/ (props changed)
rt/branches/3.4-RELEASE/lib/RT/Action/Notify.pm
Log:
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.4-RELEASE/lib/RT/Action/Notify.pm
==============================================================================
--- rt/branches/3.4-RELEASE/lib/RT/Action/Notify.pm (original)
+++ rt/branches/3.4-RELEASE/lib/RT/Action/Notify.pm Thu Jun 16 12:39:48 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