]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - IkiWiki/Plugin/anonok.pm
Update to r10 of the gallery plugin, as per <http://ned.snow-crash.org:8080/svn/ikiwi...
[git.ikiwiki.info.git] / IkiWiki / Plugin / anonok.pm
1 #!/usr/bin/perl
2 package IkiWiki::Plugin::anonok;
4 use warnings;
5 use strict;
6 use IkiWiki 2.00;
8 sub import { #{{{
9         hook(type => "canedit", id => "anonok", call => \&canedit,);
10 } # }}}
12 sub canedit ($$$) { #{{{
13         return "";
14 } #}}}
16 1