diff options
author | Simon McVittie <smcv@ http://smcv.pseudorandom.co.uk/> | 2008-11-23 17:53:33 +0000 |
---|---|---|
committer | Simon McVittie <smcv@ http://smcv.pseudorandom.co.uk/> | 2008-12-11 21:14:04 +0000 |
commit | f88870f102e9578e0b44de056fec0bac2aff8b84 (patch) | |
tree | e499b5735fba7db30eaf9fdecabfda235a72b13f | |
parent | 80e84e32bf98ed76d0e207e414035b36b9232191 (diff) |
Qualify name of formattime() correctly
-rw-r--r-- | IkiWiki/Plugin/comments.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/comments.pm b/IkiWiki/Plugin/comments.pm index d149e5982..45b13168a 100644 --- a/IkiWiki/Plugin/comments.pm +++ b/IkiWiki/Plugin/comments.pm @@ -315,7 +315,7 @@ sub sessioncgi ($$) { #{{{ $content_tmpl->param(body => $body); $content_tmpl->param(anchor => "$anchor"); $content_tmpl->param(permalink => "$baseurl#$anchor"); - $content_tmpl->param(date => formattime(time, "%X %x")); + $content_tmpl->param(date => IkiWiki::formattime(time, "%X %x")); my $content = $content_tmpl->output; |