mirror of
https://github.com/humhub/humhub.git
synced 2025-01-29 12:28:06 +01:00
Merge branch 'master' of github.com:humhub/humhub
This commit is contained in:
commit
3913f927e2
@ -16,6 +16,7 @@ HumHub Change Log
|
||||
- Fix: "Back to home" button in registration broken with user approvals and guest mode activated
|
||||
- Fix #1683 #553: Added link to show/edit users awaiting admin approval
|
||||
- Fix: TextFilterInput uses `keypress` event instead of `keydown`
|
||||
- Fix #3452: Soft deleted user remain in other users as friends
|
||||
|
||||
|
||||
1.3.8 (December 10, 2018)
|
||||
|
@ -425,6 +425,8 @@ class User extends ContentContainerActiveRecord implements IdentityInterface, Se
|
||||
Password::deleteAll(['user_id' => $this->id]);
|
||||
GroupUser::deleteAll(['user_id' => $this->id]);
|
||||
Session::deleteAll(['user_id' => $this->id]);
|
||||
Friendship::deleteAll(['user_id' => $this->id]);
|
||||
Friendship::deleteAll(['friend_user_id' => $this->id]);
|
||||
|
||||
$this->updateAttributes([
|
||||
'email' => new Expression('NULL'),
|
||||
|
Loading…
x
Reference in New Issue
Block a user