- Add 'use encoding "utf8"' to CGI.pm to avoid warnings about wide
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Sat, 17 Jun 2006 02:15:00 +0000 (02:15 +0000)
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Sat, 17 Jun 2006 02:15:00 +0000 (02:15 +0000)
    character in print.

IkiWiki/CGI.pm
debian/changelog

index 9d2ad8cdd11de28091449e7048b69d34a4eaace9..30af53586fac6d6bee7326f5828fe773e3faf63c 100644 (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;
 
index a6312dc6656150e86fa012c109cb45301a10d742..8696f3ccf6622df8ab616b99c6bf2f81df12a494 100644 (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