Also having the exact same problem... Found out in
/includes/functions_showthread.php
PHP Code:
//Referral link mod
if ($vboptions['usereferrer'])
{
$refcount = $DB_site->query_first("SELECT
COUNT(*) AS count FROM " . TABLE_PREFIX . "user WHERE referrerid =
$post[userid]");
$referrals = vb_number_format($refcount['count']);
}
//!Referral link mod
Maybe I added something, but I just commented out (look below) and it now works...
PHP Code:
//Referral link mod
/*if ($vboptions['usereferrer'])
{
$refcount = $DB_site->query_first("SELECT
COUNT(*) AS count FROM " . TABLE_PREFIX . "user WHERE referrerid =
$post[userid]");
$referrals = vb_number_format($refcount['count']);
}*/
//!Referral link mod
PS: This might cause some malfunction in the mod... I hope not!