I have found a fix for this:
In file: gallery/newreply.php
Find (around line 683):
Quote:
|
$vbulletin->db->query_write("UPDATE LOW_PRIORITY " . TABLE_PREFIX . "user SET pppcount = pppcount-1 WHERE userid = '" . $vbulletin->userinfo['userid'] . "'");
|
Replace with:
Quote:
|
$vbulletin->db->query_write("UPDATE LOW_PRIORITY " . TABLE_PREFIX . "ppgal_user SET pppcount = pppcount-1 WHERE userid = '" . $vbulletin->userinfo['userid'] . "'");
|