Quote:
Originally Posted by peterpigman
Any Ideas on this? I have reinstalled and stuff still not working.
|
Yes, problem is here:
Line 127 / 128 are now:
Code:
$settings = $db->query_read($query);
$setting = $db->fetch_array($settings);
They should be:
Code:
$settings = $vbulletin->db->query_read($query);
$setting = $vbulletin->db->fetch_array($settings);
Will be fixed next time I update, or making that change will do it.