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.master
parent
c72af182d8
commit
bce9a327c3
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue