From a9f060e7682a7170ea3134c0a0005cf7a797eae8 Mon Sep 17 00:00:00 2001 From: snipe Date: Sat, 9 Jul 2016 18:19:19 -0700 Subject: [PATCH] Removed extraneous comments --- app/Http/Controllers/Auth/AuthController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/Auth/AuthController.php b/app/Http/Controllers/Auth/AuthController.php index 49a8890afb..da14962faf 100644 --- a/app/Http/Controllers/Auth/AuthController.php +++ b/app/Http/Controllers/Auth/AuthController.php @@ -210,7 +210,7 @@ class AuthController extends Controller if ($this->ldap(Input::get('username'), Input::get('password'))) { LOG::debug("Valid LDAP login. Updating the local data."); - $user = User::find($user->id); //need the Sentry object, not the Eloquent object, to access critical password hashing functions + $user = User::find($user->id); $user->password = bcrypt(Input::get('password')); $user->ldap_import = 1; $user->save();