Photos
Blog
Projects
vanrenterghem.biz
projects
/
git.ikiwiki.info.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix undef warning when page() tests a deleted file
[git.ikiwiki.info.git]
/
IkiWiki
/
Plugin
/
comments.pm
diff --git
a/IkiWiki/Plugin/comments.pm
b/IkiWiki/Plugin/comments.pm
index ed75a6e466ac29f06708b5efbfda8aa04838d756..89560c88b11e803787df08bff66d50836756275c 100644
(file)
--- a/
IkiWiki/Plugin/comments.pm
+++ b/
IkiWiki/Plugin/comments.pm
@@
-274,7
+274,7
@@
sub editcomment ($$) {
action => $config{cgiurl},
header => 0,
table => 0,
action => $config{cgiurl},
header => 0,
table => 0,
- template =>
template('editcomment.tmpl')
,
+ template =>
{ template('editcomment.tmpl') }
,
);
IkiWiki::decode_form_utf8($form);
);
IkiWiki::decode_form_utf8($form);
@@
-672,7
+672,8
@@
sub previewcomment ($$$) {
my $template = template("comment.tmpl");
$template->param(content => $preview);
my $template = template("comment.tmpl");
$template->param(content => $preview);
- $template->param(ctime => displaytime($time));
+ $template->param(ctime => displaytime($time, undef, 1));
+ $template->param(html5 => $config{html5});
IkiWiki::run_hooks(pagetemplate => sub {
shift->(page => $location,
IkiWiki::run_hooks(pagetemplate => sub {
shift->(page => $location,