add explicit check_canedit calls when checking canattach or canremove

master
Joey Hess 2010-08-30 16:17:33 -04:00
parent a330b1ee74
commit 3b84ea2f53
1 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@ sub test () {
else {
if (IkiWiki::Plugin::attachment->can("check_canattach")) {
IkiWiki::Plugin::attachment::check_canattach($session, $file, $change->{path});
next;
next if IkiWiki::check_canedit($file, $cgi, $session, 1);
}
}
}
@ -116,7 +116,7 @@ sub test () {
if (IkiWiki::Plugin::remove->can("check_canremove")) {
IkiWiki::Plugin::remove::check_canremove(defined $page ? $page : $file, $cgi, $session);
next;
next if IkiWiki::check_canedit(defined $page ? $page : $file, $cgi, $session, 1);
}
}
else {