X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/6ebec7f9d7ddef3e7f8befb797314c89e1414635..6ccea47689a953faf3cc611e2014a8a34c360a0a:/SL/Request.pm diff --git a/SL/Request.pm b/SL/Request.pm index 37009218e..f72694d1c 100644 --- a/SL/Request.pm +++ b/SL/Request.pm @@ -251,7 +251,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. - $to->[$idx] = $iconv->convert("" . $from->[$idx]); + $to->[$idx] = $iconv->convert("" . $from->[$idx]) if defined $from->[$idx] && !defined $to->[$idx]; } else { $to->[$idx] ||= {} if 'HASH' eq ref $from->[$idx]; $to->[$idx] ||= [] if 'ARRAY' eq ref $from->[$idx];