View file upload/includes/cron/vbcms_dailycleanup.php

File size: 1.61Kb
<?php
/*======================================================================*\
|| #################################################################### ||
|| # vBulletin Blog 4.0.5
|| # ---------------------------------------------------------------- # ||
|| # Copyright ©2000-2010 vBulletin Solutions Inc. All Rights Reserved. ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
|| #################################################################### ||
\*======================================================================*/

// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
if (!is_object($vbulletin->db))
{
	exit;
}

$vbulletin->db->query_write("
	DELETE 
	" . TABLE_PREFIX . "cms_node, 
	" . TABLE_PREFIX . "cms_nodeinfo
	FROM 
	" . TABLE_PREFIX . "cms_node 
	LEFT JOIN " . TABLE_PREFIX . "cms_nodeinfo ON " . TABLE_PREFIX . "cms_nodeinfo.nodeid = " . TABLE_PREFIX . "cms_node.nodeid   
	WHERE " . TABLE_PREFIX . "cms_node.new = 1 
	AND " . TABLE_PREFIX . "cms_node.lastupdated < " . (TIMENOW - 3600)
);

log_cron_action('', $nextitem, 1);

/*======================================================================*\
|| ####################################################################
|| # CVS: $Revision: 25612 $
|| ####################################################################
\*======================================================================*/