[Rt-commit] r9294 - rt/branches/3.7-RTIR-RELENG/lib/RT

ruz at bestpractical.com ruz at bestpractical.com
Fri Oct 12 16:47:32 EDT 2007


Author: ruz
Date: Fri Oct 12 16:47:31 2007
New Revision: 9294

Modified:
   rt/branches/3.7-RTIR-RELENG/lib/RT/Record.pm

Log:
* s/old_value/old_content/, the first one is object, we need content

Modified: rt/branches/3.7-RTIR-RELENG/lib/RT/Record.pm
==============================================================================
--- rt/branches/3.7-RTIR-RELENG/lib/RT/Record.pm	(original)
+++ rt/branches/3.7-RTIR-RELENG/lib/RT/Record.pm	Fri Oct 12 16:47:31 2007
@@ -1553,7 +1553,7 @@
             my $is_the_same = 1;
             if ( defined $args{'Value'} ) {
                 $is_the_same = 0 unless defined $old_content
-                    && lc $old_value eq lc $args{'Value'};
+                    && lc $old_content eq lc $args{'Value'};
             } else {
                 $is_the_same = 0 if defined $old_content;
             }


More information about the Rt-commit mailing list