Changeset 18851

Show
Ignore:
Timestamp:
09/04/08 19:59:08 (4 months ago)
Author:
hsbt
Message:

use wassr.tt when templatize flag is only true.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/plagger/lib/Plagger/Plugin/Publish/Wassr.pm

    r16831 r18851  
    3131    my($self, $context, $args) = @_; 
    3232 
    33     my $body = $self->templatize('wassr.tt', $args); 
    34     unless ($self->conf->{templatize}) { 
     33    if ($self->conf->{templatize}) { 
     34        my $body = $self->templatize('wassr.tt', $args); 
     35    } else { 
    3536        $body = $args->{entry}->body_text; 
    3637    }