X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FIconv.pm;h=aba271a0a226d7d03bc7f1cdda949bc9165a1769;hb=65604fea85234a5ae3e787f7cafd81ece6b8621d;hp=19b8ca169839cb8eb90fd8b3f0c6974b61264f48;hpb=30e7f78760f8d9968172d6b1ee5099a86e3b8796;p=kivitendo-erp.git 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);