From 55596ef8c29ae876c718946d54de787f32033db0 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Thu, 28 Aug 2008 04:26:13 +0000 Subject: Bug 399070: Remove the 'timezone' parameter - Patch by Frédéric Buclin r/a=mkanat MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- template/en/default/list/list.atom.tmpl | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'template/en/default/list/list.atom.tmpl') diff --git a/template/en/default/list/list.atom.tmpl b/template/en/default/list/list.atom.tmpl index bfebbb8dd..5086a044c 100644 --- a/template/en/default/list/list.atom.tmpl +++ b/template/en/default/list/list.atom.tmpl @@ -24,7 +24,6 @@ #%] [% PROCESS global/variables.none.tmpl %] -[% USE date %] [% DEFAULT title = "$terms.Bugzilla $terms.Bugs" %] @@ -37,9 +36,8 @@ - [% date.format(format=>"%Y-%m-%dT%H:%M:%SZ", - time=>bugs.nsort('changedtime').last.changedtime, - gmt=>1) FILTER xml %] + [% bugs.nsort('changedtime').last.changedtime FILTER time("%Y-%m-%dT%H:%M:%SZ", "UTC") + FILTER xml %] [% urlbase FILTER html %]buglist.cgi?[% urlquerypart FILTER xml %] [% FOREACH bug = bugs %] @@ -52,8 +50,7 @@ [% bug.reporter_realname FILTER xml %] - [% date.format(format=>"%Y-%m-%dT%H:%M:%SZ",time=>bug.changedtime, - gmt=>1) FILTER xml %] + [% bug.changedtime FILTER time("%Y-%m-%dT%H:%M:%SZ", "UTC") FILTER xml %] [%# Filter out the entire block, so that we don't need to escape the html code out %] [% FILTER xml %] -- cgit v1.2.3-24-g4f1b