dam-spam/classes/check-site-get.php
2025-11-23 20:28:22 -07:00

15 lines
No EOL
245 B
PHP

<?php
if ( !defined( 'ABSPATH' ) ) {
status_header( 404 );
exit;
}
class dam_spam_check_site_get extends dam_spam_module {
public function process(
$ip, &$stats = array(), &$options = array(), &$post = array() ) {
return false;
}
}
?>