mirror of
https://github.com/flarum/core.git
synced 2025-08-10 10:24:46 +02:00
Signup + modal refactoring
This commit is contained in:
@@ -73,7 +73,7 @@ class User extends Entity implements UserInterface, RemindableInterface
|
||||
|
||||
public function setPasswordAttribute($password)
|
||||
{
|
||||
$this->attributes['password'] = Hash::make($password);
|
||||
$this->attributes['password'] = $password ? Hash::make($password) : null;
|
||||
$this->raise(new Events\PasswordWasChanged($this));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user