Quote:
Originally Posted by Logik
Bug: when u update one record in the user.php in admin cp, it updates all the records...and also it doesnt add the faveline to the database....
|
The favourite lines DEFINETLY works i have it on my forum and some others so re-check the php edit and make sure the database query ran ok.
As for the user situation yes your correct, sorry about that.
In admincp/user.php find
PHP Code:
//RBS
if ( $bs_wins AND $bs_loses ) {
$DB_site->query("UPDATE " . TABLE_PREFIX . "user SET bs_wins = '".$bs_wins."', bs_loses = '".$bs_loses."'");
}
//RBS
and replace with
PHP Code:
//RBS
if ( $bs_wins AND $bs_loses ) {
$DB_site->query("UPDATE " . TABLE_PREFIX . "user SET bs_wins = '".$bs_wins."', bs_loses = '".$bs_loses."' WHERE userid = '".$userid."'");
}
//RBS
That should sort it, sorry about that.