Quote:
Originally Posted by g-force2k2
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
|
The above code has obviously changed in v1.1 so what is needed to be able to prevent threads in spcific forums from being closed?