diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-06-30 00:48:39 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-06-30 00:48:39 +0000 |
commit | b1560f7275464f2fc1a38fac76855ce065964f28 (patch) | |
tree | f91d75edf682ecb17b02aa1a1f5dc495fc0bff50 /IkiWiki/Setup | |
parent | 45e269b7688e99e7fafe13db5d5f949015d32cee (diff) |
* Correct a longstanding bug that could cause the edit form to be empty.
This turns out to have occured if the cgi wrapper was created by an
ikiwiki invocation that included --rebuild. Thanks to Carl Worth for
tracking that down.
Diffstat (limited to 'IkiWiki/Setup')
-rw-r--r-- | IkiWiki/Setup/Standard.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Setup/Standard.pm b/IkiWiki/Setup/Standard.pm index c279e6451..87db648e0 100644 --- a/IkiWiki/Setup/Standard.pm +++ b/IkiWiki/Setup/Standard.pm @@ -34,7 +34,7 @@ sub setup_standard { delete $setup{wrappers}; my %startconfig=(%config); foreach my $wrapper (@wrappers) { - %config=(%startconfig, verbose => 0, %setup, %{$wrapper}); + %config=(%startconfig, rebuild => 0, verbose => 0, %setup, %{$wrapper}); checkconfig(); if (! $config{cgi} && ! $config{post_commit}) { $config{post_commit}=1; |