Revision 40d21a2d
Von Sven Schöling vor fast 13 Jahren hinzugefügt
SL/Request.pm | ||
---|---|---|
165 | 165 |
# Workaround for a bug: converting $from->[$idx] directly |
166 | 166 |
# leads to 'undef'. I don't know why. Converting a copy works, |
167 | 167 |
# though. |
168 |
$from->[$idx] = $iconv->convert("" . $from->[$idx]);
|
|
168 |
$to->[$idx] = $iconv->convert("" . $from->[$idx]);
|
|
169 | 169 |
} else { |
170 | 170 |
$to->[$idx] ||= {} if 'HASH' eq ref $from->[$idx]; |
171 | 171 |
$to->[$idx] ||= [] if 'ARRAY' eq ref $from->[$idx]; |
Auch abrufbar als: Unified diff
Request: Fehler in recode_recursively
Fix zu Bug 1774.