diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-09-15 17:10:53 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-09-15 17:10:53 +0000 |
commit | dfedb0351d154cd1d58e719012f4b1dda3a07666 (patch) | |
tree | 83747d9b398698544cf98e906be99e016c7eaa21 /IkiWiki/Plugin | |
parent | c1b3572d4d2d9737537441bf7e87f98de1b0075d (diff) | |
download | ikiwiki-dfedb0351d154cd1d58e719012f4b1dda3a07666.tar ikiwiki-dfedb0351d154cd1d58e719012f4b1dda3a07666.tar.gz |
* Patch from Recai to fix a wide character warning from the search plugin
during setup if the wikiname contains utf8.
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/search.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/search.pm b/IkiWiki/Plugin/search.pm index 4ae9d7283..2d8c3d4e1 100644 --- a/IkiWiki/Plugin/search.pm +++ b/IkiWiki/Plugin/search.pm @@ -79,7 +79,7 @@ sub estcfg () { #{{{ my $estdir="$config{wikistatedir}/hyperestraier"; my $cgi=IkiWiki::basename($config{cgiurl}); $cgi=~s/\..*$//; - open(TEMPLATE, ">$estdir/$cgi.tmpl") || + open(TEMPLATE, ">:utf8", "$estdir/$cgi.tmpl") || error("write $estdir/$cgi.tmpl: $!"); print TEMPLATE IkiWiki::misctemplate("search", "<!--ESTFORM-->\n\n<!--ESTRESULT-->\n\n<!--ESTINFO-->\n\n", |