diff options
author | Andreas Gohr <andi@splitbrain.org> | 2013-02-24 00:50:39 -0800 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2013-02-24 00:50:39 -0800 |
commit | e0f88986cd037b43c3060cbada3d2df2b2231b84 (patch) | |
tree | 61b33973089bb3cc497b593a0bcf40f986a71430 | |
parent | 338ac38c748d94f32ca394dc604dda97ce6762e3 (diff) | |
parent | b9b9b28b2edb54f9a3b3c5b9c69fd37a729007ec (diff) | |
download | rpg-e0f88986cd037b43c3060cbada3d2df2b2231b84.tar.gz rpg-e0f88986cd037b43c3060cbada3d2df2b2231b84.tar.bz2 |
Merge pull request #190 from splitbrain/FS2731
Fix double encoding in rss syntax FS#2731
-rw-r--r-- | inc/parser/xhtml.php | 2 |
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(); } |