From bce9a327c305455c4721d9f6b087a9298f7e460f Mon Sep 17 00:00:00 2001 From: joey Date: Tue, 28 Mar 2006 22:56:56 +0000 Subject: [PATCH] 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. --- IkiWiki/CGI.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 { -- 2.44.0