From 7ee3130c4a11184083126394fcabe932ecc234d5 Mon Sep 17 00:00:00 2001 From: "mkanat%kerio.com" <> Date: Tue, 22 Mar 2005 16:46:13 +0000 Subject: Bug 194160: buglist.cgi has wrong time zone in datestamp at the top Patch By Tomas Kopal r=joel, a=justdave --- template/en/default/list/list.html.tmpl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'template') 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 @@ %]
- [% 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 %]

-- cgit v1.2.3-24-g4f1b