mirror of
https://github.com/jsbin/jsbin.git
synced 2026-01-18 15:18:04 +00:00
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.
14 lines
211 B
PHP
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;
|
|
}
|
|
?>
|