mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 20:35:55 +00:00
8 lines
126 B
PHP
8 lines
126 B
PHP
<?php
|
|
class SanitizeDummy extends SimplePie_Sanitize {
|
|
function sanitize($data, $type, $base = '') {
|
|
return $data;
|
|
}
|
|
}
|
|
?>
|