|
MySQL doesn't want to display the player's position, gives an error, weird. Try replace:
This (sf/account.php line 317)
$rank = $GLOBALS['db']->query("SELECT Count(*) as rank FROM players WHERE honor > {$this->data['honor']} OR (honor = {$this->data['honor']} AND ID > {$this->data["ID"]})");
For this
$rank = $GLOBALS['db']->query("SELECT Count(*) as rank FROM players WHERE honor > ".$this->data['honor']);
|