Alesis, Hopefully a quick fix; diffrent method.
Find this line
PHP Code:
$privateforum = '"([3]|[24]|[25]|[26]|[27]|[28]|[29]|[30])"';
Replace with the following
PHP Code:
$privateforum = "'3', '24', '25', '26', '27', '28', '29', '30'";
Find this line
PHP Code:
$dosql .= ' AND thread.forumid NOT REGEXP ' . $privateforum;
Replace with the following
PHP Code:
$dosql .= ' AND thread.forumid NOT IN (' . $privateforum . ')';