OK I am running 3.0.7 The sticky thing dosen't work any suggestions on how to fix it?
Code:
error_reporting(E_ALL & ~E_NOTICE);
if ($DB_site == NULL)
{
exit;
}
global $DB_site;
// edit the forum id number
$newforum="25";
// you only need to edit the number of days only
$movedate = strtotime("now -14 days");
// do not edit below
$DB_site->query("
UPDATE " . TABLE_PREFIX . "thread
SET forumid = $newforum
Where lastpost <= $movedate
AND forumid != $newforum
OR sticky != 1
");
log_cron_action('Auto Move Threads To Archive', $nextitem);