diff options
author | lpsolit%gmail.com <> | 2006-02-21 09:05:56 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-02-21 09:05:56 +0100 |
commit | c738859a411c63f64fa931a5275111aeb9d90fd8 (patch) | |
tree | 6423d386e03be187a65fc71483d28571ba84b2ff /template/en/default/global | |
parent | 39e8d6dc7a8371433d8260b86ebc12396da1de7a (diff) | |
download | bugzilla-c738859a411c63f64fa931a5275111aeb9d90fd8.tar.gz bugzilla-c738859a411c63f64fa931a5275111aeb9d90fd8.tar.xz |
[SECURITY] Bug 313441: Query RSS should HTML-escape summary in <title> - Patch by Phil Ringnalda <philringnalda@gmail.com> r=myk a=justdave
I forgot to specify the bug number in my previous checkin. That was bug 312498.
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/header.html.tmpl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/template/en/default/global/header.html.tmpl b/template/en/default/global/header.html.tmpl index 90c3659fe..959bf5a99 100644 --- a/template/en/default/global/header.html.tmpl +++ b/template/en/default/global/header.html.tmpl @@ -35,7 +35,7 @@ # style: string. CSS style. # style_urls: list. List of URLs to CSS style sheets. # message: string. A message to display to the user. May contain HTML. - # rsslink: rss link url, May contain HTML + # atomlink: Atom link url, May contain HTML #%] [% IF message %] @@ -100,11 +100,11 @@ [% END %] [% END %] - [%# this puts the live bookmark up on firefox for the RSS feed %] - [% IF rsslink %] + [%# this puts the live bookmark up on firefox for the Atom feed %] + [% IF atomlink %] <link rel="alternate" - type="application/rss+xml" title="RSS 1.0" - href="[% rsslink FILTER html %]" /> + type="application/atom+xml" title="Atom feed" + href="[% atomlink FILTER html %]" /> [% END %] </head> |