diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-06-17 02:15:00 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-06-17 02:15:00 +0000 |
commit | 4d460d1f8250ac632cdec799dec80ca4e0460eeb (patch) | |
tree | 043697114431dc65f242fe0c249253b9234b065c /IkiWiki/CGI.pm | |
parent | f5eb3df1fab53ed6fe1359a8d6a339a321626db8 (diff) | |
download | ikiwiki-4d460d1f8250ac632cdec799dec80ca4e0460eeb.tar ikiwiki-4d460d1f8250ac632cdec799dec80ca4e0460eeb.tar.gz |
- Add 'use encoding "utf8"' to CGI.pm to avoid warnings about wide
character in print.
Diffstat (limited to 'IkiWiki/CGI.pm')
-rw-r--r-- | IkiWiki/CGI.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/IkiWiki/CGI.pm b/IkiWiki/CGI.pm index 9d2ad8cdd..30af53586 100644 --- a/IkiWiki/CGI.pm +++ b/IkiWiki/CGI.pm @@ -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; |