Changeset 2448

Show
Ignore:
Timestamp:
05/28/08 04:02:01 (6 months ago)
Author:
auno
Message:

Unset variable ignore the operation and set the value to it. BugzID:79876

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/release-39/lib/MT/Template/ContextHandlers.pm

    r2442 r2448  
    55115511        $val = $existing . $val; 
    55125512    } 
    5513     elsif ( defined($existing) && ( my $op = $args->{op} ) ) { 
     5513    elsif ( $existing ne '' && ( my $op = $args->{op} ) ) { 
    55145514        $val = _math_operation($ctx, $op, $existing, $val); 
    55155515    }