diff options
author | mkanat%kerio.com <> | 2005-03-22 17:46:13 +0100 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-03-22 17:46:13 +0100 |
commit | 7ee3130c4a11184083126394fcabe932ecc234d5 (patch) | |
tree | 3155794bea6f239dae9806c6bea54cbf6b293fe0 /template/en | |
parent | 203b64266389eedd9f768e974cd8260c04d7523e (diff) | |
download | bugzilla-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')
-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> |