From d47666a5217b7c6274f8b76fe99027c2923d1d25 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Tue, 29 Jun 2010 19:07:59 +0200 Subject: [PATCH] common: fix utf8 io layer of cgi output --- common.inc.plp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.inc.plp b/common.inc.plp index d51e3e6..72a0eb8 100644 --- a/common.inc.plp +++ b/common.inc.plp @@ -4,7 +4,7 @@ use strict; use warnings; no warnings 'qw'; # you know what you doing no warnings 'uninitialized'; # save some useless checks for more legible code -use open IO => ':utf8'; +use open ':std' => ':utf8'; use File::stat 'stat'; use HTTP::Date; -- 2.30.0