diff options
author | Simon McVittie <smcv@debian.org> | 2014-07-01 08:52:48 +0100 |
---|---|---|
committer | Simon McVittie <smcv@debian.org> | 2014-09-01 09:01:07 +0100 |
commit | 26d62b386ec0a2ee8f0c00cf48ccc21a8213063b (patch) | |
tree | ad5ae394b5529c518a45665f11c5bad19506258e /IkiWiki | |
parent | d4b116d3bf1c0b070b971f553c97c213ef19cd4f (diff) | |
download | ikiwiki-26d62b386ec0a2ee8f0c00cf48ccc21a8213063b.tar ikiwiki-26d62b386ec0a2ee8f0c00cf48ccc21a8213063b.tar.gz |
edittemplate: use unambiguous RFC 3339 datestamps
These take into account the timezone offset (and convert it to UTC+0000)
rather than being in an unspecified timezone.
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/edittemplate.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/edittemplate.pm b/IkiWiki/Plugin/edittemplate.pm index 947c8f215..c2a8da29f 100644 --- a/IkiWiki/Plugin/edittemplate.pm +++ b/IkiWiki/Plugin/edittemplate.pm @@ -156,7 +156,7 @@ sub filltemplate ($$) { } my $time = time(); - $template->param(time => IkiWiki::formattime($time, "%Y-%m-%d %H:%M:%S")); + $template->param(time => IkiWiki::date_3339($time)); return $template->output; } |