X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=SL%2FRequest.pm;h=dab57457a062080ae32fa6302c9841e4a3b2c674;hb=bf8db146f807d3f374334f9b91671d32592c5974;hp=d4f2d88501b43a99208ea032ae6f8f653c83490c;hpb=0dc65e8532e92daacbef328f3df2f92e7e221cb5;p=kivitendo-erp.git 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];