Browse Source

Fix token bug in eloquent auth driver.

Taylor Otwell 12 years ago
parent
commit
6ba37d42d8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/auth/drivers/eloquent.php

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

@@ -18,7 +18,7 @@ class Eloquent extends Driver {
 		{
 			return $this->model()->find($token);
 		}
-		else if (get_class($token) == Config::get('auth.model'))
+		else if (is_object($token) and get_class($token) == Config::get('auth.model'))
 		{
 			return $token;
 		}