I think I have found the cause of this, but I'm not sure where to fix it.
The SQL statement the way it is right now:
Quote:
|
UPDATE LOW_PRIORITY rwvb_user SET pppcount = pppcount-1 WHERE userid = '1';
|
Correct SQL statement:
Quote:
|
UPDATE LOW_PRIORITY rwvb_ppgal_user SET pppcount = pppcount-1 WHERE userid = '1';
|
So basically, I need to provide correct table prefix to the script. Is there a place to do it?