cron gives me this:
<?php
/**
* steamconnect_cron, performing scheduled tasks at a weekly base
*
* @author Disasterpiece
* @author Andreas "Radon" Rudolph <radon@purgatory-labs.de>
* @version 1.4.5rc3
*/
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
if (!is_object($vbulletin->db))
{
exit;
}
require_once DIR . '/includes/functions_steamconnect.php';
// ################################################## ######################
// ######################### START MAIN SCRIPT ############################
// ################################################## ######################
// Clear datastore for steam softlinks
$tmp = array();
build_datastore('steam_softlinks', serialize($tmp), true);
$stc_cache = stc_cache::getInstance();
$stc_cache->purge();
echo "<br><br>";
// Re-validate all usergroups
$finishat = update_user_steamgroup_assoc(null, null, 1, 1, 1);
log_cron_action("Processed $finishat users", $nextitem, 1);
?>
|