]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - IkiWiki/Plugin/inline.pm
Add modified opengraph plugin.
[git.ikiwiki.info.git] / IkiWiki / Plugin / inline.pm
index 19dd684dda4bebd8635d18309139fec2ab4fa795..f40956821ec7b4c7ead0b7d020b89859ad2c7016 100644 (file)
@@ -121,8 +121,11 @@ sub sessioncgi ($$) {
        if ($q->param('do') eq 'blog') {
                my $page=titlepage(decode_utf8(scalar $q->param('title')));
                $page=~s/(\/)/"__".ord($1)."__"/eg; # don't create subdirs
+               if (! length $page) {
+                       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;