From: mkanat%kerio.com <> Date: Tue, 22 Mar 2005 16:49:01 +0000 (+0000) Subject: Bug 194160: buglist.cgi has wrong time zone in datestamp at the top X-Git-Tag: bugzilla-2.18.1~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ebbff5d58bc825b57b4cd870fcf1e3a481ee530c;p=thirdparty%2Fbugzilla.git Bug 194160: buglist.cgi has wrong time zone in datestamp at the top Patch By Tomas Kopal r=joel, a=justdave --- diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl index 5a3926c5e5..c244b3f0c6 100644 --- a/template/en/default/list/list.html.tmpl +++ b/template/en/default/list/list.html.tmpl @@ -51,7 +51,11 @@ %]
- [% time2str("%a %b %e %T %Z %Y", currenttime) %]
+ [% IF Param('timezone') %] + [% time2str("%a %b %e %Y %T %Z", currenttime, Param('timezone')) %]
+ [% ELSE %] + [% time2str("%a %b %e %Y %T", currenttime) %]
+ [% END %] [% IF debug %]

[% query FILTER html %]