Browse Source

Fix hardcoded "id" column in Eloquent auth driver.

Franz Liedke 12 years ago
parent
commit
fedc9fc45e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/auth/drivers/eloquent.php

+ 1 - 1
laravel/auth/drivers/eloquent.php

@@ -52,7 +52,7 @@ class Eloquent extends Driver {
 
 		if ( ! is_null($user) and Hash::check($password, $user->{$password_field}))
 		{
-			return $this->login($user->id, array_get($arguments, 'remember'));
+			return $this->login($user->get_key(), array_get($arguments, 'remember'));
 		}
 
 		return false;