Issue 9736: Fix for undroppable registrations

This commit is contained in:
Michael 2021-01-02 09:11:38 +00:00
parent b10cd8772c
commit c0ac120578
1 changed files with 3 additions and 0 deletions

View File

@ -1159,6 +1159,9 @@ class User
return false;
}
// Delete the avatar
Photo::delete(['uid' => $register['uid']]);
return DBA::delete('user', ['uid' => $register['uid']]) &&
Register::deleteByHash($register['hash']);
}