1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-20 11:16:36 +02:00

force disable simplepie unnecessarily sanitizing data

This commit is contained in:
Andrew Dolgov 2013-02-26 18:27:40 +04:00
parent 2ea09bdef6
commit 5d56d100f1
2 changed files with 13 additions and 2 deletions

View File

@ -0,0 +1,7 @@
<?php
class SanitizeDummy extends SimplePie_Sanitize {
function sanitize($data, $type, $base) {
return $data;
}
}
?>

View File

@ -291,6 +291,10 @@
}
$rss = new SimplePie();
$rss->set_sanitize_class("SanitizeDummy");
// simplepie ignores the above and creates default sanitizer anyway,
// so let's override it...
$rss->sanitize = new SanitizeDummy();
$rss->set_output_encoding('UTF-8');
$rss->set_raw_data($feed_data);
@ -438,7 +442,7 @@
}
foreach ($items as $item) {
if ($_REQUEST['xdebug'] == 2) {
if ($_REQUEST['xdebug'] == 3) {
print_r($item);
}
@ -473,7 +477,7 @@
$entry_title = $item->get_title();
$entry_link = rewrite_relative_url($site_url, htmlspecialchars_decode($item->get_link()));
$entry_link = rewrite_relative_url($site_url, $item->get_link());
if ($debug_enabled) {
_debug("update_rss_feed: title $entry_title");