really fix calls to check_can*
parent
0fde74b012
commit
fbcb8553df
|
@ -58,14 +58,14 @@ sub test () { #{{{
|
||||||
if ($change->{action} eq 'change' ||
|
if ($change->{action} eq 'change' ||
|
||||||
$change->{action} eq 'add') {
|
$change->{action} eq 'add') {
|
||||||
if (defined $page) {
|
if (defined $page) {
|
||||||
if (IkiWiki->can("check_canedit") &&
|
if (IkiWiki->can("check_canedit")) {
|
||||||
IkiWiki::check_canedit($page, $cgi, $session)) {
|
IkiWiki::check_canedit($page, $cgi, $session);
|
||||||
next;
|
next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (IkiWiki::Plugin::attachment->can("check_canattach") &&
|
if (IkiWiki::Plugin::attachment->can("check_canattach")) {
|
||||||
IkiWiki::Plugin::attachment::check_canattach($session, $file, $change->{path})) {
|
IkiWiki::Plugin::attachment::check_canattach($session, $file, $change->{path});
|
||||||
next;
|
next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -80,8 +80,8 @@ sub test () { #{{{
|
||||||
# could add.)
|
# could add.)
|
||||||
next if $newfiles{$file};
|
next if $newfiles{$file};
|
||||||
|
|
||||||
if (IkiWiki::Plugin::remove->can("check_canremove") &&
|
if (IkiWiki::Plugin::remove->can("check_canremove")) {
|
||||||
IkiWiki::Plugin::remove::check_canremove(defined $page ? $page : $file, $cgi, $session)) {
|
IkiWiki::Plugin::remove::check_canremove(defined $page ? $page : $file, $cgi, $session);
|
||||||
next;
|
next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue