Find in newthread.php:
PHP Code:
$repthread=$DB_site->query("SELECT COUNT(threadid) FROM post where userid='$bbuserinfo[userid]'");
if (($foruminfo[threadamount]>$repthread and !(ismoderator($foruminfo[forumid],"",$bbuserinfo[userid]))) {
eval("standarderror(\"".gettemplate("error_forumnothread")."\");");
exit;
}
else {
$foruminfo[threadamount]="";
}
}
and change it to:
PHP Code:
$rep=$DB_site->query("SELECT COUNT(threadid) AS usertotal FROM post where userid='$bbuserinfo[userid]'");
if (($foruminfo[threadamount]>$rep)) {
eval("standarderror(\"".gettemplate("error_forumnothread")."\");");
}
Tested