Partly restored functionality
This commit is contained in:
parent
b55ae5717b
commit
437f96e573
|
@ -58,6 +58,12 @@ class ExpireAndRemoveUsers
|
|||
Photo::delete(['uid' => $user['uid']]);
|
||||
|
||||
// Delete the contacts of this user
|
||||
$self = DBA::selectFirst('contact', ['nurl'], ['self' => true, 'uid' => $user['uid']]);
|
||||
if (DBA::isResult($self)) {
|
||||
DBA::delete('contact', ['nurl' => $self['nurl'], 'self' => false]);
|
||||
}
|
||||
|
||||
// Delete all contacts of this user
|
||||
DBA::delete('contact', ['uid' => $user['uid']]);
|
||||
|
||||
// These tables contain the permissionset which will also be deleted when a user is deleted.
|
||||
|
|
Loading…
Reference in a new issue