diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-07-28 20:53:51 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-07-28 20:53:51 +0000 |
commit | 7fa31b00b798c8d3fb9c64f47651b09b3352eca1 (patch) | |
tree | 3addbbfc8fcd216dffbed3bf0867620b751a8ce2 | |
parent | 0cea469b36c95a69c24ceaf752384d75be6dafd3 (diff) |
fix typo
-rw-r--r-- | IkiWiki/Plugin/skeleton.pm | 2 | ||||
-rw-r--r-- | doc/bugs/strange_hook_id_in_skeleton.pm.mdwn | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/skeleton.pm b/IkiWiki/Plugin/skeleton.pm index d1a50c03b..2ea19eef9 100644 --- a/IkiWiki/Plugin/skeleton.pm +++ b/IkiWiki/Plugin/skeleton.pm @@ -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 () { #{{{ diff --git a/doc/bugs/strange_hook_id_in_skeleton.pm.mdwn b/doc/bugs/strange_hook_id_in_skeleton.pm.mdwn index ddca7fc63..5e96acf60 100644 --- a/doc/bugs/strange_hook_id_in_skeleton.pm.mdwn +++ b/doc/bugs/strange_hook_id_in_skeleton.pm.mdwn @@ -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]] |