Commit 0177ace5 authored by Rafael Monnerat's avatar Rafael Monnerat

monitor: Escape title when generating OPML

parent 1c2a9658
......@@ -287,7 +287,7 @@ class Monitoring(object):
'outline_title': 'Monitoring RSS Feed list',
'root_title': escape(self.root_title)}
opml_content += OPML_OUTLINE_FEED % {'title': self.title,
opml_content += OPML_OUTLINE_FEED % {'title': escape(self.title),
'html_url': self.public_url + '/feed',
'xml_url': self.public_url + '/feed',
'global_url': "%s/private/" % self.webdav_url}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment