summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hamann <michael@content-space.de>2013-02-23 12:35:57 +0100
committerChristopher Smith <chris@jalakai.co.uk>2013-02-24 12:39:02 +0000
commit64e8e116217f7559802d6cab15365d167714f191 (patch)
treea2764293330c1482f42a52e68cae3757b61a1a87
parent11a53a83f01bf75d24afb7f184a4030d596958b4 (diff)
downloadrpg-64e8e116217f7559802d6cab15365d167714f191.tar.gz
rpg-64e8e116217f7559802d6cab15365d167714f191.tar.bz2
Fix double encoding in rss syntax FS#2731
-rw-r--r--inc/parser/xhtml.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php
index 4dd8c5e78..84a999e56 100644
--- a/inc/parser/xhtml.php
+++ b/inc/parser/xhtml.php
@@ -889,7 +889,7 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
// title is escaped by SimplePie, we unescape here because it
// is escaped again in externallink() FS#1705
$this->externallink($item->get_permalink(),
- htmlspecialchars_decode($item->get_title()));
+ html_entity_decode($item->get_title(), ENT_QUOTES, 'UTF-8'));
}else{
$this->doc .= ' '.$item->get_title();
}