summaryrefslogtreecommitdiff
path: root/inc/parser
diff options
context:
space:
mode:
authorMichael Hamann <michael@content-space.de>2013-02-23 12:35:57 +0100
committerMichael Hamann <michael@content-space.de>2013-02-23 12:35:57 +0100
commitb9b9b28b2edb54f9a3b3c5b9c69fd37a729007ec (patch)
tree34a21af78b534864219aa951eb8721f672555801 /inc/parser
parentf00926dd85886b81600997f6b4fbc69af9deacad (diff)
downloadrpg-b9b9b28b2edb54f9a3b3c5b9c69fd37a729007ec.tar.gz
rpg-b9b9b28b2edb54f9a3b3c5b9c69fd37a729007ec.tar.bz2
Fix double encoding in rss syntax FS#2731
Diffstat (limited to 'inc/parser')
-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();
}