Skip to content
Snippets Groups Projects
Commit 793361f8 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

Avoid double encoding for RSS titles FS#1705

Ignore-this: 3e02f7f87047627230ff95fd4a38de32

darcs-hash:20090726114554-7ad00-4ad7f6e5c9a95eea352ab909a54798a5a773e9f1.gz
parent 7c3370d3
No related branches found
No related tags found
No related merge requests found
......@@ -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();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment