aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin
diff options
context:
space:
mode:
authorSimon McVittie <smcv@ http://smcv.pseudorandom.co.uk/>2008-12-11 21:23:55 +0000
committerSimon McVittie <smcv@ http://smcv.pseudorandom.co.uk/>2008-12-11 21:23:55 +0000
commitf2d5ead6af148ab214ceb5f55406a1f0691e4261 (patch)
tree41d17b8d34b68898979b735a5808fe4cbc209f80 /IkiWiki/Plugin
parentdd1fa13bce872141442ff134610e4b9175605a4e (diff)
downloadikiwiki-f2d5ead6af148ab214ceb5f55406a1f0691e4261.tar
ikiwiki-f2d5ead6af148ab214ceb5f55406a1f0691e4261.tar.gz
comments: Change internal-use-only directive from [[!comment]] to [[!_comment]]
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r--IkiWiki/Plugin/comments.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/comments.pm b/IkiWiki/Plugin/comments.pm
index 888c9fd9c..9ea4a3f69 100644
--- a/IkiWiki/Plugin/comments.pm
+++ b/IkiWiki/Plugin/comments.pm
@@ -17,7 +17,7 @@ use constant CANCEL => "Cancel";
sub import { #{{{
hook(type => "checkconfig", id => 'comments', call => \&checkconfig);
hook(type => "getsetup", id => 'comments', call => \&getsetup);
- hook(type => "preprocess", id => 'comment', call => \&preprocess);
+ hook(type => "preprocess", id => '_comment', call => \&preprocess);
hook(type => "sessioncgi", id => 'comment', call => \&sessioncgi);
hook(type => "htmlize", id => "_comment", call => \&htmlize);
hook(type => "pagetemplate", id => "comments", call => \&pagetemplate);
@@ -403,7 +403,7 @@ sub sessioncgi ($$) { #{{{
my $anchor = "${comments_pagename}${i}";
$editcontent =~ s/"/\\"/g;
- my $content = "[[!comment format=$type\n";
+ my $content = "[[!_comment format=$type\n";
# FIXME: handling of double quotes probably wrong?
if (defined $session->param('name')) {