Skip to content

Commit

Permalink
revert check_canedit nosubs thing
Browse files Browse the repository at this point in the history
Abstraction violation. I now think the problem should be treated as a bug
in httpauth.
  • Loading branch information
joeyh committed Aug 30, 2010
1 parent 70db571 commit 2df0999
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions IkiWiki.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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;
}
Expand Down
6 changes: 3 additions & 3 deletions IkiWiki/Receive.pm
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,13 @@ sub test () {
if ($change->{action} eq 'change' ||
$change->{action} eq 'add') {
if (defined $page) {
IkiWiki::check_canedit($page, $cgi, $session, 0, 1);
IkiWiki::check_canedit($page, $cgi, $session);
next;
}
else {
if (IkiWiki::Plugin::attachment->can("check_canattach")) {
IkiWiki::Plugin::attachment::check_canattach($session, $file, $change->{path});
IkiWiki::check_canedit($file, $cgi, $session, 0, 1);
IkiWiki::check_canedit($file, $cgi, $session);
next;
}
}
Expand All @@ -118,7 +118,7 @@ sub test () {

if (IkiWiki::Plugin::remove->can("check_canremove")) {
IkiWiki::Plugin::remove::check_canremove(defined $page ? $page : $file, $cgi, $session);
IkiWiki::check_canedit(defined $page ? $page : $file, $cgi, $session, 0, 1);
IkiWiki::check_canedit(defined $page ? $page : $file, $cgi, $session);
next;
}
}
Expand Down

0 comments on commit 2df0999

Please sign in to comment.