Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
authorJoey Hess <joey@kitenet.net>
Mon, 24 Jan 2011 20:32:29 +0000 (16:32 -0400)
committerJoey Hess <joey@kitenet.net>
Mon, 24 Jan 2011 20:32:29 +0000 (16:32 -0400)
IkiWiki/Plugin/editpage.pm

index df29bcc98d5ba95663b57a6c252fd6a2432e0627..8f71dafa89df49a3983f0ae185114a484608c994 100644 (file)
@@ -91,6 +91,9 @@ sub cgi_editpage ($$) {
        # This untaint is safe because we check file_pruned and
        # wiki_file_regexp.
        my ($page)=$form->field('page')=~/$config{wiki_file_regexp}/;
+       if (! defined $page) {
+               error(gettext("bad page name"));
+       }
        $page=possibly_foolish_untaint($page);
        my $absolute=($page =~ s#^/+##); # absolute name used to force location
        if (! defined $page || ! length $page ||