diff options
author | lpsolit%gmail.com <> | 2005-11-19 10:43:44 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-11-19 10:43:44 +0100 |
commit | 8501a6a12adf670fb0b3a6f356c53e47d233ea6d (patch) | |
tree | a9bf8960184d8073648a61e33307d4ef11a321ff /template | |
parent | 29cf8805dac7281cb4f4e52ee48177a3a679a0c4 (diff) | |
download | bugzilla-8501a6a12adf670fb0b3a6f356c53e47d233ea6d.tar.gz bugzilla-8501a6a12adf670fb0b3a6f356c53e47d233ea6d.tar.xz |
Bug 313492: Query RSS doesn't correctly handle timezones in dc:date - Patch by Phil Ringnalda <bugzilla@philringnalda.com> r/a=myk
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/list/list.rss.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/list/list.rss.tmpl b/template/en/default/list/list.rss.tmpl index f1d6c4745..cf6901bd7 100644 --- a/template/en/default/list/list.rss.tmpl +++ b/template/en/default/list/list.rss.tmpl @@ -63,7 +63,7 @@ </title> <link>[% Param('urlbase') FILTER xml %]show_bug.cgi?id=[% bug.bug_id FILTER xml %]</link> <dc:creator>[% bug.reporter_realname FILTER xml %]</dc:creator> - <dc:date>[% date.format( format=>"%Y-%m-%dT%H:%MZ",time=>bug.opentime) FILTER xml %]</dc:date> + <dc:date>[% date.format(format=>"%Y-%m-%dT%H:%MZ",time=>bug.opentime,gmt=>1) FILTER xml %]</dc:date> <description> [%# Filter out the entire block, so that we don't need to escape the html code out %] [% FILTER xml %] |