fix typo
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Sat, 28 Jul 2007 20:53:51 +0000 (20:53 +0000)
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Sat, 28 Jul 2007 20:53:51 +0000 (20:53 +0000)
IkiWiki/Plugin/skeleton.pm
doc/bugs/strange_hook_id_in_skeleton.pm.mdwn

index d1a50c03bd14fefe093e5064ec9f51848fb7bd04..2ea19eef928ab2513a93c9c97bf7e6d6d7688d7d 100644 (file)
@@ -26,7 +26,7 @@ sub import { #{{{
        hook(type => "canedit", id => "skeleton", call => \&canedit);
        hook(type => "formbuilder_setup", id => "skeleton", call => \&formbuilder_setup);
        hook(type => "formbuilder", id => "skeleton", call => \&formbuilder);
-       hook(type => "savestate", id => "savestate", call => \&savestate);
+       hook(type => "savestate", id => "skeleton", call => \&savestate);
 } # }}}
 
 sub getopt () { #{{{
index ddca7fc63062ae7645df3d32fa793e54a538510c..5e96acf60c25fc053d494a2bf2ad23ae870b1f90 100644 (file)
@@ -1,3 +1,5 @@
        hook(type => "savestate", id => "savestate", call => \&savestate);
 
-Shouldn't that id be "skeleton", like all the other ids? --Ethan
\ No newline at end of file
+Shouldn't that id be "skeleton", like all the other ids? --Ethan
+
+[[done]]