diff options
author | Joey Hess <joey@kitenet.net> | 2010-08-30 18:31:56 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-08-30 18:31:56 -0400 |
commit | 2df0999e4033278a6cc8f6e2d00449224aa09efa (patch) | |
tree | 8f72cf07bcaa62e6ab7f2f9d7037c58a95238133 /IkiWiki.pm | |
parent | 70db57134a73cde5cafac0f02a3858a22d44ed26 (diff) | |
download | ikiwiki-2df0999e4033278a6cc8f6e2d00449224aa09efa.tar ikiwiki-2df0999e4033278a6cc8f6e2d00449224aa09efa.tar.gz |
revert check_canedit nosubs thing
Abstraction violation. I now think the problem should be treated as a bug
in httpauth.
Diffstat (limited to 'IkiWiki.pm')
-rw-r--r-- | IkiWiki.pm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/IkiWiki.pm b/IkiWiki.pm index d114c9a69..6da281999 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -1455,12 +1455,11 @@ sub filter ($$$) { return $content; } -sub check_canedit ($$$;$$) { +sub check_canedit ($$$;$) { my $page=shift; my $q=shift; my $session=shift; my $nonfatal=shift; - my $nosubs=shift; my $canedit; run_hooks(canedit => sub { @@ -1471,7 +1470,6 @@ sub check_canedit ($$$;$$) { $canedit=1; } elsif (ref $ret eq 'CODE') { - error(sprintf(gettext("you are not allowed to change %s"), $page)) if $nosubs && ! $nonfatal; $ret->() unless $nonfatal; $canedit=0; } |