Quote:
Originally Posted by Blaine0002
Try this... Open vbtrade.php
find:
PHP Code:
$userdata =& datamanager_init('user', $vbulletin, ERRTYPE_STANDARD);
$userdata->set_existing($vbulletin->userinfo);
$userdata->set($moneyrow,($vbulletin->userinfo[$moneyrow] + $total_offer));
$userdata->save();
Replace with:
PHP Code:
$db->query("update " . TABLE_PREFIX . "user set {$vbulletin->options['vbst_moneyrow']}={$vbulletin->options['vbst_moneyrow']}+'{$total_offer}' where userid='{$vbulletin->userinfo['userid']}'");
find:
PHP Code:
$userdata =& datamanager_init('user', $vbulletin, ERRTYPE_STANDARD);
$userdata->set_existing($vbulletin->userinfo);
$userdata->set($moneyrow,($vbulletin->userinfo[$moneyrow] - $totalcost_fc));
$userdata->save();
Replace with:
PHP Code:
$db->query("update " . TABLE_PREFIX . "user set {$vbulletin->options['vbst_moneyrow']}={$vbulletin->options['vbst_moneyrow']}-'{$totalcost_fc}' where userid='{$vbulletin->userinfo['userid']}'");
Hope this works for you..
|
I wonder why using the User DataManager object broke it. I will go ahead and use the SQL queries instead since that seems to fix this plguin with iCash.
Quote:
Originally Posted by Lionel
a member discovered a major bug.
Try purchasing some stocks and for amount of shares put in -500 (negative). That will increase your points amount. In one case, the guy who had 2900 points ended with 10 billions!!!!!!
|
Good catch! I will implement the fix that Blaine posted.