mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 06:30:59 +01:00
Fix not working delete of single accounts from admin
This commit is contained in:
parent
e03b1aeb16
commit
58d57b99f3
@ -331,6 +331,7 @@ class admin_account
|
||||
$msg = '';
|
||||
if(count($content['account_id']) == 1)
|
||||
{
|
||||
$account_id = current($content['account_id']);
|
||||
self::_deferred_delete($account_id, $content['new_owner'], $content['delete_apps'], $content['admin_cmd']);
|
||||
if ($content['contact_id'])
|
||||
{
|
||||
@ -387,7 +388,7 @@ class admin_account
|
||||
}
|
||||
}
|
||||
// Add filemanager home directory in as special case, hook is in the API
|
||||
if (Api\Vfs::file_exists('/home/' . $GLOBALS['egw']->accounts->id2name($content['account_id'])))
|
||||
if (Api\Vfs::file_exists('/home/' . $GLOBALS['egw']->accounts->id2name($content['account_id'][0])))
|
||||
{
|
||||
$app = 'filemanager';
|
||||
$sel_options['delete_apps'][] = array(
|
||||
|
Loading…
Reference in New Issue
Block a user