Quote:
Originally Posted by lasto
can we exclude certain forums from this hack as if u have a mod room and u have no replies then obviously these posts are gonna be removed to the same section as well which is deffo a no no
|
open threadmaintenace.php
find:
PHP Code:
WHERE post.dateline <= $timenow - ( $TMClosed * 86400 ) AND open=1
replace with:
PHP Code:
WHERE post.dateline <= $timenow - ( $TMClosed * 86400 ) AND open=1 AND thread.forumid NOT IN ( 0 )
Just replace the 0 in the parethesis with the staff forumids and seperate each one with a comma
ie:
PHP Code:
NOT IN ( 3,25,42 )
regards,
g-force2k2