From: Simon McVittie Date: Tue, 18 Nov 2008 10:43:11 +0000 (+0000) Subject: comments: don't rely on mdwn getting loaded first X-Git-Tag: 2.71~133 X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/9d92fd5eb060678650e6ca5ce8af0a50600c6d2e?ds=sidebyside;hp=-c comments: don't rely on mdwn getting loaded first --- 9d92fd5eb060678650e6ca5ce8af0a50600c6d2e diff --git a/IkiWiki/Plugin/comments.pm b/IkiWiki/Plugin/comments.pm index c545a1335..29dc06f32 100644 --- a/IkiWiki/Plugin/comments.pm +++ b/IkiWiki/Plugin/comments.pm @@ -17,8 +17,7 @@ sub import { #{{{ hook(type => "getsetup", id => 'comments', call => \&getsetup); hook(type => "preprocess", id => 'comments', call => \&preprocess); hook(type => "sessioncgi", id => 'comment', call => \&sessioncgi); - hook(type => "htmlize", id => "_comment", - call => \&IkiWiki::Plugin::mdwn::htmlize); + hook(type => "htmlize", id => "_comment", call => \&htmlize); IkiWiki::loadplugin("inline"); IkiWiki::loadplugin("mdwn"); } # }}}