From: joey Date: Tue, 28 Mar 2006 22:56:56 +0000 (+0000) Subject: Put in a quick fix for a bug involving page preview while creating a page X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/bce9a327c305455c4721d9f6b087a9298f7e460f Put in a quick fix for a bug involving page preview while creating a page that caused the page location to be changed to a subdir. This is not a very good fix. --- diff --git a/IkiWiki/CGI.pm b/IkiWiki/CGI.pm index f472413b8..89047a952 100644 --- a/IkiWiki/CGI.pm +++ b/IkiWiki/CGI.pm @@ -355,7 +355,9 @@ sub cgi_editpage ($$) { #{{{ my ($from)=$form->param('from')=~/$config{wiki_file_regexp}/; if (! defined $from || ! length $from || $from ne $form->param('from') || - $from=~/$config{wiki_file_prune_regexp}/ || $from=~/^\//) { + $from=~/$config{wiki_file_prune_regexp}/ || + $from=~/^\// || + $form->submitted eq "Preview") { @page_locs=$best_loc=$page; } else {