- Add 'use encoding "utf8"' to CGI.pm to avoid warnings about wide

character in print.
master
joey 2006-06-17 02:15:00 +00:00
parent f5eb3df1fa
commit 4d460d1f82
2 changed files with 3 additions and 0 deletions

View File

@ -4,6 +4,7 @@ use warnings;
use strict;
use IkiWiki;
use IkiWiki::UserInfo;
use encoding 'utf8'; # force use of utf8 for io layer
package IkiWiki;

2
debian/changelog vendored
View File

@ -19,6 +19,8 @@ ikiwiki (1.6) UNRELEASED; urgency=low
- Comment field in edit page is not decoded and all the non-ascii chars in
this field are corrupted as the result. We should decode it as we do it
for the content.
- Add 'use encoding "utf8"' to CGI.pm to avoid warnings about wide
character in print.
-- Joey Hess <joeyh@debian.org> Fri, 16 Jun 2006 21:35:03 -0400