Fix PHP 5.3 issue

This commit is contained in:
Frédéric Guillot 2014-11-25 22:13:51 -05:00
parent 38070aec79
commit b13dba46e7
1 changed files with 1 additions and 1 deletions

View File

@ -311,7 +311,7 @@ class User extends Base
}
// Finally remove the user
if (! $db->table(self::TABLE)->eq('id', $user_id)->remove()) {
if (! $db->table(User::TABLE)->eq('id', $user_id)->remove()) {
return false;
}
});