diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-04-22 15:38:50 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-04-22 15:38:50 -0400 |
commit | 338d4ccff115e99a6541a660433591a9b7306c32 (patch) | |
tree | dad96492e53d5e01b62f6e432390f01033d406c8 /IkiWiki/Plugin/blogspam.pm | |
parent | 252edaea66577327ba533eea5626be8ff860b9d3 (diff) | |
download | ikiwiki-338d4ccff115e99a6541a660433591a9b7306c32.tar ikiwiki-338d4ccff115e99a6541a660433591a9b7306c32.tar.gz |
fix id
Diffstat (limited to 'IkiWiki/Plugin/blogspam.pm')
-rw-r--r-- | IkiWiki/Plugin/blogspam.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/blogspam.pm b/IkiWiki/Plugin/blogspam.pm index c9883fbc2..da63d3edb 100644 --- a/IkiWiki/Plugin/blogspam.pm +++ b/IkiWiki/Plugin/blogspam.pm @@ -9,7 +9,7 @@ my $defaulturl='http://test.blogspam.net:8888/'; sub import { hook(type => "getsetup", id => "blogspam", call => \&getsetup); - hook(type => "checkconfig", id => "skeleton", call => \&checkconfig); + hook(type => "checkconfig", id => "blogspam", call => \&checkconfig); hook(type => "checkcontent", id => "blogspam", call => \&checkcontent); } |