make valid html

master
joey 2007-02-21 00:13:51 +00:00
parent 8607c3ab85
commit 67b782a346
1 changed files with 6 additions and 6 deletions

View File

@ -66,20 +66,20 @@ Index: IkiWiki/Plugin/search.pm
+
sub import { #{{{
- hook(type => "getopt", id => "hyperestraier",
- call => \&getopt);
- call => \&getopt);
- hook(type => "checkconfig", id => "hyperestraier",
+ hook(type => "checkconfig", id => "plucene",
call => \&checkconfig);
call => \&checkconfig);
- hook(type => "pagetemplate", id => "hyperestraier",
- call => \&pagetemplate);
- call => \&pagetemplate);
- hook(type => "delete", id => "hyperestraier",
+ hook(type => "delete", id => "plucene",
call => \&delete);
call => \&delete);
- hook(type => "change", id => "hyperestraier",
+ hook(type => "change", id => "plucene",
call => \&change);
call => \&change);
- hook(type => "cgi", id => "hyperestraier",
- call => \&cgi);
- call => \&cgi);
} # }}}
-sub getopt () { #{{{