Fix for the Postcount Bug:
Edit Plugin "
VSa - APBOUPC - 35 (PI)"
Find
PHP Code:
if (trim($recipient) == '')
{
continue;
}
if (!in_array(trim($recipient), $apboupc_allowedrec))
{
standard_error(fetch_error('error_postcount_too_low_pm', $vbulletin->options['apboupc_pm_amount'], $vbulletin->userinfo[posts], $allowed_recipients));
}
Replace with
PHP Code:
if (trim($recipient['username']) == '')
{
continue;
}
if (!in_array(trim($recipient['username']), $apboupc_allowedrec))
{
standard_error(fetch_error('error_postcount_too_low_pm', $vbulletin->options['apboupc_pm_amount'], $vbulletin->userinfo[posts], $allowed_recipients));
}
Save and check whether it works.