[Rt-commit] r3204 - in rt/branches/3.2-RELEASE: . lib/RT/Action
alexmv at bestpractical.com
alexmv at bestpractical.com
Thu Jun 16 04:31:40 EDT 2005
Author: alexmv
Date: Thu Jun 16 04:31:40 2005
New Revision: 3204
Modified:
rt/branches/3.2-RELEASE/ (props changed)
rt/branches/3.2-RELEASE/lib/RT/Action/Notify.pm
Log:
r4308 at zoq-fot-pik: chmrr | 2005-06-16 04:31:30 -0400
* Missed an lc
Modified: rt/branches/3.2-RELEASE/lib/RT/Action/Notify.pm
==============================================================================
--- rt/branches/3.2-RELEASE/lib/RT/Action/Notify.pm (original)
+++ rt/branches/3.2-RELEASE/lib/RT/Action/Notify.pm Thu Jun 16 04:31:40 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