diff options
author | Camil Staps | 2015-06-28 00:16:54 +0200 |
---|---|---|
committer | Camil Staps | 2015-06-28 00:16:54 +0200 |
commit | 1a3c6167f6a68964a0bd94c064a88794c952efb6 (patch) | |
tree | 984508e789b96e2f8906c00a9def229435b45403 /src/controllers/PasswordReminderController.php | |
parent | Expose Location header; redirect after storing User (diff) |
Lumen
Diffstat (limited to 'src/controllers/PasswordReminderController.php')
-rw-r--r-- | src/controllers/PasswordReminderController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controllers/PasswordReminderController.php b/src/controllers/PasswordReminderController.php index c4422c3..8d3ea29 100644 --- a/src/controllers/PasswordReminderController.php +++ b/src/controllers/PasswordReminderController.php @@ -61,7 +61,7 @@ class PasswordReminderController extends BaseController { */ public function destroy($userEmail, $reminderToken) { $user = Auth::user(); - $user->password = Request::get('password'); + $user->password = Request::input('password'); $user->save(); $this->passwordReminder = $this->passwordReminder->findOrFail($reminderToken); $this->passwordReminder->useToken(); |