jsbin/php/blacklist.php
2012-06-22 12:09:14 +01:00

14 lines
211 B
PHP

<?php
function noinsert($html, $javascript) {
if (stripos($html, 'processform.cgi') !== false) {
return true;
}
if (stripos($html, 'habbo.com') !== false) {
return true;
}
return false;
}
?>