]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/commitdiff
Fix inline plugin for non-ASCII rootpage
authorFeng Shu <tumashu@163.com>
Sun, 2 Dec 2018 00:38:34 +0000 (08:38 +0800)
committerSimon McVittie <smcv@debian.org>
Sun, 3 Feb 2019 13:15:35 +0000 (13:15 +0000)
IkiWiki/Plugin/inline.pm

index a85cd5d2f5f6ec09967a351edb9e54cd0610e9fa..f40956821ec7b4c7ead0b7d020b89859ad2c7016 100644 (file)
@@ -125,7 +125,7 @@ sub sessioncgi ($$) {
                        error(gettext("please enter a page title"));
                }
                # if the page already exists, munge it to be unique
-               my $from=$q->param('from');
+               my $from=decode_utf8($q->param('from'));
                my $add="";
                while (exists $IkiWiki::pagecase{lc($from."/".$page.$add)}) {
                        $add=1 unless length $add;