no need of bumping twice a day, some of us also have a live and can just look into the board every second day or so.....
instead of that:
PHP Code:
$threads = $DB_site->query_first("SELECT COUNT(*) as counter FROM thread WHERE postuserid=$bbuserinfo[userid] AND forumid IN(23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 55, 63, 65, 66, 67) AND dateline>".(time()-2592000));
if(in_array($threadinfo[forumid],array(23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 55, 63, 65, 66, 67)) and $threads[counter]<2) {
eval("standarderror(\"".gettemplate("error_notenoughthreads")."\");");
exit;
}
this:
PHP Code:
if(in_array($threadinfo[forumid],array(23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 55, 63, 65, 66, 67)) and $bbuserinfo[threadcounter]<2) {
eval("standarderror(\"".gettemplate("error_notenoughthreads")."\");");
exit;
}