X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FSEPA%2FXML%2FTransaction.pm;h=83a749e375d3a0a538c759abc8b5aa72fc61ce29;hb=1b112bd36f0b592a999276b6eb8c90b2a5827998;hp=22f661bb69ba651f4d4c7086a05d356d621f16f5;hpb=fec48603264c8adad06fbc212358633778322b56;p=kivitendo-erp.git 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 {