summaryrefslogtreecommitdiffstats
path: root/template/en/default/list/list.html.tmpl
diff options
context:
space:
mode:
authormkanat%kerio.com <>2005-03-22 17:46:13 +0100
committermkanat%kerio.com <>2005-03-22 17:46:13 +0100
commit7ee3130c4a11184083126394fcabe932ecc234d5 (patch)
tree3155794bea6f239dae9806c6bea54cbf6b293fe0 /template/en/default/list/list.html.tmpl
parent203b64266389eedd9f768e974cd8260c04d7523e (diff)
downloadbugzilla-7ee3130c4a11184083126394fcabe932ecc234d5.tar.gz
bugzilla-7ee3130c4a11184083126394fcabe932ecc234d5.tar.xz
Bug 194160: buglist.cgi has wrong time zone in datestamp at the top
Patch By Tomas Kopal <Tomas.Kopal@altap.cz> r=joel, a=justdave
Diffstat (limited to 'template/en/default/list/list.html.tmpl')
-rw-r--r--template/en/default/list/list.html.tmpl6
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>