stop-spammers-classic/classes/ss_check_site_get.php
2025-09-13 16:55:35 -06:00

16 lines
No EOL
264 B
PHP

<?php
if ( !defined( 'ABSPATH' ) ) {
status_header( 404 );
exit;
}
class ss_check_site_get extends be_module {
public function process(
$ip, &$stats = array(), &$options = array(), &$post = array() ) {
// not checking this anymore
return false;
}
}
?>