forked from extern/egroupware
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 = '';
|
$msg = '';
|
||||||
if(count($content['account_id']) == 1)
|
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']);
|
self::_deferred_delete($account_id, $content['new_owner'], $content['delete_apps'], $content['admin_cmd']);
|
||||||
if ($content['contact_id'])
|
if ($content['contact_id'])
|
||||||
{
|
{
|
||||||
@ -387,7 +388,7 @@ class admin_account
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Add filemanager home directory in as special case, hook is in the API
|
// 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';
|
$app = 'filemanager';
|
||||||
$sel_options['delete_apps'][] = array(
|
$sel_options['delete_apps'][] = array(
|
||||||
|
Loading…
Reference in New Issue
Block a user