diff options
author | lpsolit%gmail.com <> | 2005-07-08 06:51:42 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-07-08 06:51:42 +0200 |
commit | 0c49003e66abc5e52979f4a4c65ee1aea2cbdd0c (patch) | |
tree | 644c6e69ce3aec50bf15ea24b2ddd6697155a3ac /template | |
parent | 230976efc0233c7157f6b6a3919e5eb885dbe4a7 (diff) | |
download | bugzilla-0c49003e66abc5e52979f4a4c65ee1aea2cbdd0c.tar.gz bugzilla-0c49003e66abc5e52979f4a4c65ee1aea2cbdd0c.tar.xz |
Bug 297974: Add bug numbers to the generated RSS buglist - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=myk
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/list/list.rss.tmpl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/template/en/default/list/list.rss.tmpl b/template/en/default/list/list.rss.tmpl index 53352f225..04e8ec39f 100644 --- a/template/en/default/list/list.rss.tmpl +++ b/template/en/default/list/list.rss.tmpl @@ -58,7 +58,9 @@ [% FOREACH bug = bugs %] <item rdf:about="[% Param('urlbase') FILTER xml %]show_bug.cgi?id=[% bug.bug_id FILTER xml %]"> - <title>[% bug.short_desc FILTER xml %]</title> + <title> + [% "@" IF bug.secure_mode %] [[% terms.Bug %] [%+ bug.bug_id FILTER xml %]] [% bug.short_desc FILTER xml %] + </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> |