X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/0dc65e8532e92daacbef328f3df2f92e7e221cb5..d72d64b57bba72ef971519beaea00d5c2d245a8d:/SL/Request.pm diff --git a/SL/Request.pm b/SL/Request.pm index d4f2d8850..dab57457a 100644 --- a/SL/Request.pm +++ b/SL/Request.pm @@ -165,7 +165,7 @@ sub _recode_recursively { # Workaround for a bug: converting $from->[$idx] directly # leads to 'undef'. I don't know why. Converting a copy works, # though. - $from->[$idx] = $iconv->convert("" . $from->[$idx]); + $to->[$idx] = $iconv->convert("" . $from->[$idx]); } else { $to->[$idx] ||= {} if 'HASH' eq ref $from->[$idx]; $to->[$idx] ||= [] if 'ARRAY' eq ref $from->[$idx];