From 40d21a2dbba64bb087ff7bd2781ed1a0707add1c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Thu, 12 Jan 2012 13:29:31 +0100 Subject: [PATCH] Request: Fehler in recode_recursively Fix zu Bug 1774. --- SL/Request.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; -- 2.20.1