Skip to content
Snippets Groups Projects
Commit a494ed33 authored by Christopher Smith's avatar Christopher Smith
Browse files

FS#2738, fix double encoding of html entities in RSS feeds (updates feed.php...

FS#2738, fix double encoding of html entities in RSS feeds (updates feed.php for changes to Diff class introduced in PR#179)
parent df9752e9
No related branches found
No related tags found
No related merge requests found
......@@ -322,14 +322,15 @@ function rss_buildItems(&$rss, &$data, $opt) {
$rev = $revs[0];
if($rev) {
$df = new Diff(explode("\n", htmlspecialchars(rawWiki($id, $rev))),
explode("\n", htmlspecialchars(rawWiki($id, ''))));
$df = new Diff(explode("\n", rawWiki($id, $rev)),
explode("\n", rawWiki($id, '')));
} else {
$df = new Diff(array(''),
explode("\n", htmlspecialchars(rawWiki($id, ''))));
explode("\n", rawWiki($id, '')));
}
if($opt['item_content'] == 'htmldiff') {
// note: no need to escape diff output, TableDiffFormatter provides 'safe' html
$tdf = new TableDiffFormatter();
$content = '<table>';
$content .= '<tr><th colspan="2" width="50%">'.$rev.'</th>';
......@@ -337,8 +338,9 @@ function rss_buildItems(&$rss, &$data, $opt) {
$content .= $tdf->format($df);
$content .= '</table>';
} else {
// note: diff output must be escaped, UnifiedDiffFormatter provides plain text
$udf = new UnifiedDiffFormatter();
$content = "<pre>\n".$udf->format($df)."\n</pre>";
$content = "<pre>\n".hsc($udf->format($df))."\n</pre>";
}
}
break;
......
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