From 02587d83dc9bdadef5fc1c0002f2cf628bddb67b Mon Sep 17 00:00:00 2001 From: "mkanat%kerio.com" Date: Tue, 22 Mar 2005 08:49:01 +0000 Subject: [PATCH] Bug 194160: buglist.cgi has wrong time zone in datestamp at the top Patch By Tomas Kopal r=joel, a=justdave git-svn-id: svn://10.0.0.236/trunk@170974 18797224-902f-48f8-a5cc-f745e15eee43 --- .../bugzilla/template/en/default/list/list.html.tmpl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mozilla/webtools/bugzilla/template/en/default/list/list.html.tmpl b/mozilla/webtools/bugzilla/template/en/default/list/list.html.tmpl index 4d0a3754489..0d3a38d5e39 100644 --- a/mozilla/webtools/bugzilla/template/en/default/list/list.html.tmpl +++ b/mozilla/webtools/bugzilla/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 %]