diff options
author | Marvin Borner | 2018-07-08 21:51:24 +0200 |
---|---|---|
committer | Marvin Borner | 2018-07-08 21:51:24 +0200 |
commit | 1240ace21d2270e87e61cb88aaa0e4508dcdb967 (patch) | |
tree | 371ae9b2b0d92fc25d19741507c5b332af0f39f4 /app/Http/Controllers/Auth | |
parent | 1c2e6127f480979186e62c2e6ecc2971bf3a4451 (diff) |
Better previous hash control
Diffstat (limited to 'app/Http/Controllers/Auth')
-rw-r--r-- | app/Http/Controllers/Auth/RegisterController.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php index 14f1ef3..f922f9f 100644 --- a/app/Http/Controllers/Auth/RegisterController.php +++ b/app/Http/Controllers/Auth/RegisterController.php @@ -71,6 +71,7 @@ class RegisterController extends Controller 'name' => $data['name'], 'email' => $data['email'], 'password' => $hashedPassword, + 'prevHash' => $previousHash, 'hash' => $summedHash ]); } |