Browse Source

Added remember_token to protected $hidden variable

Juukie14 11 years ago
parent
commit
65db159b2d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/models/User.php

+ 1 - 1
app/models/User.php

@@ -17,7 +17,7 @@ class User extends Eloquent implements UserInterface, RemindableInterface {
 	 *
 	 * @var array
 	 */
-	protected $hidden = array('password');
+	protected $hidden = array('password', 'remember_token');
 
 	/**
 	 * Get the unique identifier for the user.