X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/fec48603264c8adad06fbc212358633778322b56..bcc996e65643:/SL/SEPA/XML/Transaction.pm diff --git a/SL/SEPA/XML/Transaction.pm b/SL/SEPA/XML/Transaction.pm index 22f661bb6..83a749e37 100644 --- a/SL/SEPA/XML/Transaction.pm +++ b/SL/SEPA/XML/Transaction.pm @@ -2,8 +2,6 @@ package SL::SEPA::XML::Transaction; use strict; -use SL::DB::Helper::ReplaceSpecialChars qw(replace_special_chars); - use Carp; use Encode; use List::Util qw(first); @@ -37,7 +35,7 @@ sub _init { map { $self->{$_} = $self->{sepa}->{iconv}->convert($params{$_}) } keys %params; map { $self->{$_} =~ s/\s+//g } qw(src_iban src_bic dst_iban dst_bic); - map { $self->{$_} = replace_special_chars($self->{$_}) } qw(company reference end_to_end_id); + map { $self->{$_} = $self->{sepa}->_replace_special_chars($self->{$_}) } qw(company reference end_to_end_id); } sub get {