summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--inc/parser/xhtml.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php
index 57e9621e1..5a1c1893b 100644
--- a/inc/parser/xhtml.php
+++ b/inc/parser/xhtml.php
@@ -775,8 +775,10 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
// support feeds without links
$lnkurl = $item->get_permalink();
if($lnkurl){
+ // title is escaped by SimplePie, we unescape here because it
+ // is escaped again in externallink() FS#1705
$this->externallink($item->get_permalink(),
- $item->get_title());
+ htmlspecialchars_decode($item->get_title()));
}else{
$this->doc .= ' '.$item->get_title();
}