mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 22:14:45 +02:00
fix password hashing bug; closes #53
This commit is contained in:
parent
4b2bac2fce
commit
9a07cc83d1
@ -124,7 +124,7 @@ class UserRepository
|
||||
}
|
||||
|
||||
if(array_key_exists('password', $data)) {
|
||||
$user['password'] = Hash::make($data['password']);
|
||||
$data['password'] = Hash::make($data['password']);
|
||||
}
|
||||
|
||||
return Models\User::findOrFail($id)->update($data);
|
||||
|
Loading…
x
Reference in New Issue
Block a user