0byt3m1n1
Path:
/
data
/
applications
/
aps
/
b2evolution
/
4.1.5b-1
/
standard
/
htdocs
/
inc
/
cron
/
jobs
/
[
Home
]
File: _antispam_poll.job.php
<?php /** * This file implements the Antispam poll Cron controller * * @author fplanque: Francois PLANQUE * * @version $Id: _antispam_poll.job.php 9 2011-10-24 22:32:00Z fplanque $ */ if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' ); if( antispam_poll_abuse() ) { // Success $job_ret = 1; } else { // Error $job_ret = 100; } global $Messages; $result_message = $Messages->get_string( '', '', "\n" ); return $job_ret; /* * $Log: _antispam_poll.job.php,v $ */ ?>