Quote:
Originally Posted by CyberRanger
Okay, I figured out the stupid coding mistake I made.
I'll release a full update tomorrow. In the meantime, for the per forum/usergroup number of allowed threads to work right, replace the plugin "Check if Max Number of Threads Reached" with the code below:
PHP Code:
global $vbulletin;
$vbulletin->input->clean_array_gpc('r', array(
'f' => TYPE_INT
));
$limitquery = '';
if ($vbulletin->options['throttle_advanced'])
{
// see if per forum/usergroup permissions exist
$tempadvanced = $db->query_first("
SELECT *
FROM " . TABLE_PREFIX . "tp_throttleposts
WHERE `tp_forumid` = " . $vbulletin->GPC['f'] . " AND `tp_usergroupid` = ".$db->sql_prepare($vbulletin->userinfo['usergroupid']));
if ($tempadvanced['tp_id'] > 0) // forum\usergroup advanced record exists
{
$vbulletin->options['throttle_threads_time'] = $tempadvanced['tp_threadtime'];
$permissions['throttle_threadspermissions'] = $tempadvanced['tp_threadlimit'];
$limitquery = " AND `forumid` = " . $vbulletin->GPC['f'] . " ";
}
}
if ($permissions['throttle_threadspermissions'] >= 0)
{
$tempmax2 = $db->query_first("SELECT COUNT(threadid) AS threadcount
FROM " . TABLE_PREFIX . "thread
WHERE `postuserid`=".$db->sql_prepare($vbulletin->userinfo['userid'])."
AND `visible`=1
$limitquery
AND `dateline` >= ".$db->sql_prepare((int) (TIMENOW - ($vbulletin->options['throttle_threads_time'] * 60))));
$threadremaining = ($permissions['throttle_threadspermissions']) - ($tempmax2['threadcount']);
if ($threadremaining <= 0 AND $permissions['throttle_threadspermissions'] >= 0)
{
eval(standard_error(fetch_error('throttle_threads_max_reached', $permissions['throttle_threadspermissions'], $vbulletin->options['throttle_threads_time'])));
}
}
The per forum/usergroup number of posts is also not working properly. I'll have that in tomorrow's fix.
|
Thanks! I think it's working just fine now!!!