aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/editdiff.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-09-17 14:34:02 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-09-17 14:34:02 -0400
commitda7c6eb1b40de8ca02a2d36dff3da24e43977490 (patch)
treed0dc834a79c224909b926285bbe62f04bf35a774 /IkiWiki/Plugin/editdiff.pm
parentb540b263debef11d305b85f4dc85a6807b782810 (diff)
downloadikiwiki-da7c6eb1b40de8ca02a2d36dff3da24e43977490.tar
ikiwiki-da7c6eb1b40de8ca02a2d36dff3da24e43977490.tar.gz
editdiff: Broken since 2.62 due to wrong syntax, now fixed.
Diffstat (limited to 'IkiWiki/Plugin/editdiff.pm')
-rw-r--r--IkiWiki/Plugin/editdiff.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/editdiff.pm b/IkiWiki/Plugin/editdiff.pm
index 2b1fac55d..f5d7837fc 100644
--- a/IkiWiki/Plugin/editdiff.pm
+++ b/IkiWiki/Plugin/editdiff.pm
@@ -56,7 +56,7 @@ sub formbuilder_setup { #{{{
my %params=@_;
my $form=$params{form};
- return if defined ! $form->field("do") || $form->field("do") ne "edit";
+ return if ! defined $form->field("do") || $form->field("do") ne "edit";
my $page=$form->field("page");
$page = IkiWiki::possibly_foolish_untaint($page);