X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/e43c500e32c61ef667d4e6a57e7315232fd705c2..f393137fd963b0898bb1c1204abfca639aae27a1:/SL/Template/Plugin/T8.pm diff --git a/SL/Template/Plugin/T8.pm b/SL/Template/Plugin/T8.pm index 79fab96bb..339faa941 100644 --- a/SL/Template/Plugin/T8.pm +++ b/SL/Template/Plugin/T8.pm @@ -6,19 +6,19 @@ use base qw( Template::Plugin::Filter ); my $locale = undef; sub init { - my $self = shift; + my $self = shift; - $locale ||= Locale->new($main::myconfig{countrycode}, 'all'); + $locale ||= Locale->new($main::myconfig{countrycode}, 'all'); - # first arg can specify filter name - $self->install_filter($self->{ _ARGS }->[0] || 'T8'); + # first arg can specify filter name + $self->install_filter($self->{ _ARGS }->[0] || 'T8'); - return $self; + return $self; } sub filter { - my ($self, $text, $args) = @_; - return $locale->text($text, @{ $args || [] }); + my ($self, $text, $args) = @_; + return $locale->text($text, @{ $args || [] }); } return 'SL::Template::Plugin::T8';