Quote:
Originally Posted by Sculli
I have installed this and got it to work, but not quite as I expected, it moves threads that are not older than the 7 days that I specified, i.e. it moved a thread from today with zero replies.
I have a couple of questions:
If I were to remove
Code:
AND `replycount` = '0'
from autodelete.php, then it would also move threads that have replies, right?
If I were to set the zero in
Code:
$threadman->set('sticky', 0);
to 1, then it would not move stickies?
|
yes you're right
Quote:
but not quite as I expected, it moves threads that are not older than the 7 days that I specified, i.e. it moved a thread from today with zero replies.
|
make sure you don't put zero in created date option
this is sql query :
PHP Code:
$vbulletin->db->query_read("
SELECT * from `" . TABLE_PREFIX . "thread`
Where forumid IN($from) AND `replycount` = '0' AND `postuserid` NOT IN (".$vbulletin->options['Admin'].") AND `dateline` <= '" . (TIMENOW - (".$vbulletin->options['created']." * 86400)) . "'");
thank you so much