> is there also a way to only delete threads that have not been replied to.
Pretty easy:
In autoprune.php FIND
PHP Code:
$threads = $DB_site->query("SELECT threadid FROM " . TABLE_PREFIX . "thread WHERE forumid=$forum[forumid] AND lastpost <= " . (TIMENOW - ($forum['pruneafter'] * 86400)));
REPLACE that with
PHP Code:
$threads = $DB_site->query("SELECT threadid FROM " . TABLE_PREFIX . "thread WHERE forumid=$forum[forumid] AND replycount = 0 AND lastpost <= " . (TIMENOW - ($forum['pruneafter'] * 86400)));
@Bison
Hmm ... there's not much to see, just a new input-box in forum manager.