X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/587c7468815169f69621cf374fe455d7b7694eeb..3b5dc7b68b53ea153b9716f9b85c3b6dc3a71574:/SL/Iconv.pm diff --git a/SL/Iconv.pm b/SL/Iconv.pm index 19b8ca169..aba271a0a 100644 --- a/SL/Iconv.pm +++ b/SL/Iconv.pm @@ -33,8 +33,8 @@ sub convert { my ($from_charset, $to_charset, $text) = @_; - $from_charset ||= Common::DEFAULT_CHARSET; - $to_charset ||= Common::DEFAULT_CHARSET; + $from_charset ||= 'UTF-8'; + $to_charset ||= 'UTF-8'; my $converter = _get_converter($from_charset, $to_charset); $text = $converter->convert($text);