From: Joey Hess Date: Mon, 26 Jan 2009 19:00:28 +0000 (-0500) Subject: add mising hooks and fix syntax error X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/cf374e97cf571c847a21efce9c26b01315a054a1?ds=sidebyside add mising hooks and fix syntax error --- diff --git a/IkiWiki/Plugin/rename.pm b/IkiWiki/Plugin/rename.pm index f79349561..37f643eef 100644 --- a/IkiWiki/Plugin/rename.pm +++ b/IkiWiki/Plugin/rename.pm @@ -107,7 +107,6 @@ sub check_canrename ($$$$$$) { } } }); - return $canrename; } sub rename_form ($$$) { diff --git a/IkiWiki/Plugin/skeleton.pm.example b/IkiWiki/Plugin/skeleton.pm.example index 59503a462..f5e401c05 100644 --- a/IkiWiki/Plugin/skeleton.pm.example +++ b/IkiWiki/Plugin/skeleton.pm.example @@ -30,6 +30,8 @@ sub import { hook(type => "auth", id => "skeleton", call => \&auth); hook(type => "sessioncgi", id => "skeleton", call => \&sessioncgi); hook(type => "canedit", id => "skeleton", call => \&canedit); + hook(type => "canremove", id => "skeleton", call => \&canremove); + hook(type => "canrename", id => "skeleton", call => \&canrename); hook(type => "checkcontent", id => "skeleton", call => \&checkcontent); hook(type => "editcontent", id => "skeleton", call => \&editcontent); hook(type => "formbuilder_setup", id => "skeleton", call => \&formbuilder_setup); @@ -195,6 +197,7 @@ sub canrename ($$$) { my $session=shift; debug("skeleton plugin running in canrename"); +} sub checkcontent (@) { my %params=@_;