[Rt-commit] r10662 - in rt/branches/3.999-DANGEROUS: lib/RT/Interface

jesse at bestpractical.com jesse at bestpractical.com
Fri Feb 1 18:11:13 EST 2008


Author: jesse
Date: Fri Feb  1 18:11:12 2008
New Revision: 10662

Modified:
   rt/branches/3.999-DANGEROUS/   (props changed)
   rt/branches/3.999-DANGEROUS/lib/RT/Interface/Email.pm

Log:
 r76076 at pinglin:  jesse | 2008-02-01 18:09:57 -0500
 * Don't need to lowercase that 


Modified: rt/branches/3.999-DANGEROUS/lib/RT/Interface/Email.pm
==============================================================================
--- rt/branches/3.999-DANGEROUS/lib/RT/Interface/Email.pm	(original)
+++ rt/branches/3.999-DANGEROUS/lib/RT/Interface/Email.pm	Fri Feb  1 18:11:12 2008
@@ -329,16 +329,15 @@
 sub send_email {
     my (%args) = (
         entity      => undef,
-        Bounce      => 0,
+        bounce      => 0,
         ticket      => undef,
         transaction => undef,
         @_,
     );
-    foreach my $arg (qw(entity Bounce)) {
+    foreach my $arg (qw(Entity Bounce)) {
         next unless defined $args{ lc $arg };
 
-        Jifty->log->warn(
-            "'" . lc($arg) . "' argument is deprecated, use '$arg' instead" );
+        Jifty->log->warn( "'" . lc($arg) . "' argument is deprecated, use '$arg' instead" );
         $args{$arg} = delete $args{ lc $arg };
     }
 


More information about the Rt-commit mailing list