summaryrefslogtreecommitdiff
path: root/lib/lib_rss.php
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-03-17 15:26:41 +0100
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-03-17 15:26:41 +0100
commit876369d65503830e5600593ddcdfb828973898b4 (patch)
tree879f837eff24a2b67dd5ee1fc1c8325d446dc61a /lib/lib_rss.php
parentfd171e8f9517dd5a046d4f7f159cde3002e7706a (diff)
Correction bug export RSS (encodage de &) + petits ajouts navigation dans la configuration
Diffstat (limited to 'lib/lib_rss.php')
-rw-r--r--lib/lib_rss.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lib_rss.php b/lib/lib_rss.php
index a412ca7b1..b9202755b 100644
--- a/lib/lib_rss.php
+++ b/lib/lib_rss.php
@@ -89,7 +89,7 @@ function opml_export ($cats) {
$txt .= '<outline text="' . $cat['name'] . '">' . "\n";
foreach ($cat['feeds'] as $feed) {
- $txt .= "\t" . '<outline text="' . cleanText ($feed->name ()) . '" type="rss" xmlUrl="' . $feed->url () . '" htmlUrl="' . $feed->website () . '" />' . "\n";
+ $txt .= "\t" . '<outline text="' . cleanText ($feed->name ()) . '" type="rss" xmlUrl="' . htmlentities ($feed->url ()) . '" htmlUrl="' . htmlentities ($feed->website ()) . '" />' . "\n";
}
$txt .= '</outline>' . "\n";