From c4ba4f3e7cd337939308b57eee799b201bd78cb9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Tue, 29 Jan 2013 18:01:43 +0100 Subject: [PATCH] =?utf8?q?Wenn=20Proxies=20=C3=BCbergeben=20werden,=20m?= =?utf8?q?=C3=BCssen=20die=20vor=20dem=20Downgrade=20stringifiziert=20werd?= =?utf8?q?en.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- SL/FCGIFixes.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SL/FCGIFixes.pm b/SL/FCGIFixes.pm index ea31ccf56..f1fa869f1 100644 --- a/SL/FCGIFixes.pm +++ b/SL/FCGIFixes.pm @@ -35,7 +35,7 @@ sub fix_print_and_internal_encoding_after_0_68 { *FCGI::Stream::PRINT = sub { if (!$::locale || !$::locale->raw_io_active) { my $self = shift; - my @vals = map { $encoder->encode($_, Encode::FB_CROAK|Encode::LEAVE_SRC) } @_; + my @vals = map { $encoder->encode("$_", Encode::FB_CROAK|Encode::LEAVE_SRC) } @_; @_ = ($self, @vals); } -- 2.20.1