Sempre que eu entro na opção Highscores no site do meu ot aparece isso :
Fatal error: Uncaught exception 'E_OTS_NotLoaded' in C:\xampp\htdocs\pot\OTS_Account.php:789 Stack trace: #0 C:\xampp\htdocs\highscores.php(93): OTS_Account->getCustomField('flag') #1 C:\xampp\htdocs\index.php(141): include('C:\xampp\htdocs...') #2 {main} thrown in C:\xampp\htdocs\pot\OTS_Account.php on line 789
No caso a linha 789 é essa :
public function getCustomField($field)
{
if( !isset($this->data['id']) )
{
throw new E_OTS_NotLoaded(); <<<<<<< Line 789
}
$value = $this->db->query('SELECT ' . $this->db->fieldName($field) . ' FROM ' . $this->db->tableName('accounts') . ' WHERE ' . $this->db->fieldName('id') . ' = ' . $this->data['id'])->fetch();
return $value[$field];
}
Alguem pode me ajuda?