X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/8d04a1de61fb7498085c2ff59418aa4d2a0189d2..61426a71868a6863115b0a4e0467756e97953092:/IkiWiki/Plugin/edittemplate.pm diff --git a/IkiWiki/Plugin/edittemplate.pm b/IkiWiki/Plugin/edittemplate.pm index 846b4e7c8..189a066d8 100644 --- a/IkiWiki/Plugin/edittemplate.pm +++ b/IkiWiki/Plugin/edittemplate.pm @@ -16,6 +16,8 @@ sub import { #{{{ call => \&preprocess); hook(type => "formbuilder", id => "edittemplate", call => \&formbuilder); + hook(type => "refresh", id => "edittemplate", + call => \&refresh); } #}}} sub getsetup () { #{{{ @@ -138,4 +140,8 @@ sub filltemplate ($$) { #{{{ return $template->output; } #}}} +sub refresh () { + +} + 1