mirror of
https://gh.wpcy.net/https://github.com/webguyio/dam-spam.git
synced 2026-05-25 03:03:57 +08:00
16 lines
No EOL
348 B
PHP
16 lines
No EOL
348 B
PHP
<?php
|
|
|
|
if ( !defined( 'ABSPATH' ) ) {
|
|
status_header( 404 );
|
|
exit;
|
|
}
|
|
|
|
class dam_spam_check_good_cache extends dam_spam_module {
|
|
public function process( $ip, &$stats = array(), &$options = array(), &$post = array() ) {
|
|
$this->searchname = 'Good Cache';
|
|
$gcache = $stats['goodips'];
|
|
return $this->searchcache( $ip, $gcache );
|
|
}
|
|
}
|
|
|
|
?>
|