diff options
-rw-r--r-- | template/en/default/list/list.html.tmpl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl index 4d0a37544..0d3a38d5e 100644 --- a/template/en/default/list/list.html.tmpl +++ b/template/en/default/list/list.html.tmpl @@ -52,7 +52,11 @@ %] <div align="center"> - <b>[% time2str("%a %b %e %T %Z %Y", currenttime) %]</b><br> + [% IF Param('timezone') %]
+ <b>[% time2str("%a %b %e %Y %T %Z", currenttime, Param('timezone')) %]</b><br>
+ [% ELSE %]
+ <b>[% time2str("%a %b %e %Y %T", currenttime) %]</b><br>
+ [% END %]
[% IF debug %] <p>[% query FILTER html %]</p> |