mirror of
https://gh.wpcy.net/https://github.com/webguyio/stop-spammers-classic.git
synced 2026-05-27 02:04:00 +08:00
16 lines
No EOL
264 B
PHP
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;
|
|
}
|
|
}
|
|
|
|
?>
|