From: mkanat%kerio.com <> Date: Tue, 22 Mar 2005 16:46:13 +0000 (+0000) Subject: Bug 194160: buglist.cgi has wrong time zone in datestamp at the top X-Git-Tag: bugzilla-2.19.3~116 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ee3130c4a11184083126394fcabe932ecc234d5;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 4d0a375448..0d3a38d5e3 100644 --- a/template/en/default/list/list.html.tmpl +++ b/template/en/default/list/list.html.tmpl @@ -52,7 +52,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 %]