[Rt-commit] r3218 - in rt/branches/QUEBEC-EXPERIMENTAL: .
lib/RT/Action
jesse at bestpractical.com
jesse at bestpractical.com
Thu Jun 16 13:32:06 EDT 2005
Author: jesse
Date: Thu Jun 16 13:32:05 2005
New Revision: 3218
Modified:
rt/branches/QUEBEC-EXPERIMENTAL/ (props changed)
rt/branches/QUEBEC-EXPERIMENTAL/lib/RT/Action/Notify.pm
Log:
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/QUEBEC-EXPERIMENTAL/lib/RT/Action/Notify.pm
==============================================================================
--- rt/branches/QUEBEC-EXPERIMENTAL/lib/RT/Action/Notify.pm (original)
+++ rt/branches/QUEBEC-EXPERIMENTAL/lib/RT/Action/Notify.pm Thu Jun 16 13:32:05 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