From e6bc39d124eb4320213b3712ced5c398b3b71918 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" Date: Fri, 2 Feb 2007 21:40:06 +0000 Subject: [PATCH] =?UTF-8?q?Bug=20367674:=20[SECURITY]=20XSS=20when=20readi?= =?UTF-8?q?ng=20Atom=20feeds=20due=20to=20unescaped=20HTML=20Patch=20By=20?= =?UTF-8?q?Fr=EF=BF=BD=EF=BF=BDd=EF=BF=BD=EF=BF=BDric=20Buclin=20=20r=3Dbkor,=20a=3Dmkanat?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../template/en/default/list/list.atom.tmpl | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/webtools/bugzilla/template/en/default/list/list.atom.tmpl b/webtools/bugzilla/template/en/default/list/list.atom.tmpl index 367f2858f13..837c70b9a62 100644 --- a/webtools/bugzilla/template/en/default/list/list.atom.tmpl +++ b/webtools/bugzilla/template/en/default/list/list.atom.tmpl @@ -62,23 +62,23 @@ FieldValue - [% columns.opendate.title FILTER none %] - [% bug.opendate FILTER none %] + [% columns.opendate.title FILTER html %] + [% bug.opendate FILTER html %] - [% columns.assigned_to_realname.title FILTER none %] - [% bug.assigned_to_realname FILTER none %] + [% columns.assigned_to_realname.title FILTER html %] + [% bug.assigned_to_realname FILTER html %] - [% columns.priority.title FILTER none %] - [% bug.priority FILTER none %] + [% columns.priority.title FILTER html %] + [% bug.priority FILTER html %] - [% columns.bug_severity.title FILTER none %] - [% bug.bug_severity FILTER none %] + [% columns.bug_severity.title FILTER html %] + [% bug.bug_severity FILTER html %] - [% columns.bug_status.title FILTER none %] - [% bug.bug_status FILTER none %] + [% columns.bug_status.title FILTER html %] + [% bug.bug_status FILTER html %] - [% columns.changeddate.title FILTER none %] - [% bug.changeddate FILTER none -%] + [% columns.changeddate.title FILTER html %] + [% bug.changeddate FILTER html -%] [% END %]