diff options
| author | 2013-09-14 17:51:33 +0200 | |
|---|---|---|
| committer | 2013-09-14 17:51:33 +0200 | |
| commit | c63b52738c85ed76c795e62f3238f6cc32cc0b55 (patch) | |
| tree | 6e8fa81e9b5a6f174041c944801c61a9a5563d30 /lib/lib_rss.php | |
| parent | adc33811c3c9513ca56dfa5e57169a5a1df106db (diff) | |
| parent | da2e4e09d939f49a69cfcd0b3a450f0484f51ff9 (diff) | |
Merge branch 'utf8bug' of https://github.com/Alkarex/FreshRSS into Alkarex-utf8bug
Diffstat (limited to 'lib/lib_rss.php')
| -rw-r--r-- | lib/lib_rss.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lib_rss.php b/lib/lib_rss.php index a7a5244f8..60e6d3358 100644 --- a/lib/lib_rss.php +++ b/lib/lib_rss.php @@ -48,7 +48,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="' . htmlentities ($feed->url ()) . '" htmlUrl="' . htmlentities ($feed->website ()) . '" />' . "\n"; + $txt .= "\t" . '<outline text="' . cleanText ($feed->name ()) . '" type="rss" xmlUrl="' . htmlentities ($feed->url (), ENT_COMPAT, 'UTF-8') . '" htmlUrl="' . htmlentities ($feed->website (), ENT_COMPAT, 'UTF-8') . '" />' . "\n"; } $txt .= '</outline>' . "\n"; |
