well all the code belongs to newreply.php
after this:
PHP Code:
if (!$threadinfo[open]) {
if (!ismoderator($threadinfo[forumid],"canopenclose")) {
eval("standardredirect(\"".gettemplate("redirect_threadclosed")."\",\"showthread.php?s=$session[sessionhash]&threadid=$threadid\");");
exit;
}
}
add this:
PHP Code:
$threads1=$DB_site-query_first("SELECT COUNT(*) as counter FROM thread WHERE postuserid=$bbuserinfo[userid] AND forumid=x"); //For example Forum2
$threads2=$DB_site-query_first("SELECT COUNT(*) as counter FROM thread WHERE postuserid=$bbuserinfo[userid] AND forumid=y"); // For example Forum3
if($threadinfo[forumid]==x and $threads1[counter]<y and $threads2[counter]<y) show_nopermission();