1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:45:56 +00: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;
}
}
?>