diff options
author | Tuomas Jormola <tj@solitudo.net> | 2010-10-31 03:02:38 +0200 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-10-30 22:02:30 -0400 |
commit | 4573524196abfa2ba130d725ce67b8963da09c62 (patch) | |
tree | 76a6416f6f9d51c5e55576c5dfc7b95f03bf5ff9 | |
parent | cb45d3cf44760411746414ba1218c925ad097149 (diff) |
Added missing hook registration for checkconfig
Signed-off-by: Tuomas Jormola <tj@solitudo.net>
-rw-r--r-- | IkiWiki/Plugin/htmltidy.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/htmltidy.pm b/IkiWiki/Plugin/htmltidy.pm index 185d01dd6..1108aeb89 100644 --- a/IkiWiki/Plugin/htmltidy.pm +++ b/IkiWiki/Plugin/htmltidy.pm @@ -15,6 +15,7 @@ use IPC::Open2; sub import { hook(type => "getsetup", id => "tidy", call => \&getsetup); hook(type => "sanitize", id => "tidy", call => \&sanitize); + hook(type => "checkconfig", id => "tidy", call => \&checkconfig); } sub getsetup () { |