There seems to be a major bug with this hack. It automaticly closes threads after 1 reply if the thread doesn't have a limit set for thread replies. post with no limit set should not be closed after 1 post.
PHP Code:
$count=$DB_site->query_first("SELECT replycount FROM thread WHERE threadid='$threadid'");
if ($count[replycount] >= $thread[reps])
$DB_site->query("UPDATE thread SET open= '0' WHERE threadid = '$threadid'");