diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2008-12-19 14:03:26 -0500 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2008-12-19 14:03:26 -0500 |
commit | ddabb010b2c45556046fd1ba982893395c7a46f6 (patch) | |
tree | 691af410141427016b372cb36c0f74f3c5663c2c /IkiWiki | |
parent | f7fc062a12dd18cb153ede4d574fd792bc996218 (diff) | |
download | ikiwiki-ddabb010b2c45556046fd1ba982893395c7a46f6.tar ikiwiki-ddabb010b2c45556046fd1ba982893395c7a46f6.tar.gz |
rename comments_display to comment
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/comments.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/comments.pm b/IkiWiki/Plugin/comments.pm index fd9f0acb4..705ba340b 100644 --- a/IkiWiki/Plugin/comments.pm +++ b/IkiWiki/Plugin/comments.pm @@ -447,7 +447,7 @@ sub sessioncgi ($$) { content => $preview); }); - my $template = template("comments_display.tmpl"); + my $template = template("comment.tmpl"); $template->param(content => $preview); $template->param(title => $form->field('subject')); $template->param(ctime => displaytime(time)); @@ -538,7 +538,7 @@ sub pagetemplate (@) { if ($shown) { $comments = IkiWiki::preprocess_inline( pages => "internal($page/$config{comments_pagename}*)", - template => 'comments_display', + template => 'comment', show => 0, reverse => 'yes', page => $page, |