jsbin/public/blacklist.php
Aron Carroll ef05666727 Move PHP codebase into ./public directory
Updated all relevant paths to point to new locations. Webs servers will
need to be updated to point to ./public. The build script remains in the
root and will work as before.
2012-04-17 11:38:35 +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;
}
?>