mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 17:04:14 +01:00
* Mail: fix updating/deleting mail accounts does not refresh the mail tree no more
This commit is contained in:
parent
5e26bee384
commit
9220941047
@ -1122,7 +1122,7 @@ class admin_mail
|
||||
}
|
||||
if ($content['acc_id']) Mail::unsetCachedObjects($content['acc_id']);
|
||||
if (stripos($msg,'fatal error:')!==false) $msg_type = 'error';
|
||||
Framework::refresh_opener($msg, 'emailadmin', $content['acc_id'], $new_account ? 'add' : 'update', null, null, null, $msg_type);
|
||||
Framework::refresh_opener($msg, 'mail-account', $content['acc_id'], $new_account ? 'add' : 'update', null, null, null, $msg_type);
|
||||
if ($button == 'save') Framework::window_close();
|
||||
break;
|
||||
|
||||
@ -1135,7 +1135,7 @@ class admin_mail
|
||||
elseif (Mail\Account::delete($content['acc_id']) > 0)
|
||||
{
|
||||
if ($content['acc_id']) Mail::unsetCachedObjects($content['acc_id']);
|
||||
Framework::refresh_opener(lang('Account deleted.'), 'emailadmin', $content['acc_id'], 'delete');
|
||||
Framework::refresh_opener(lang('Account deleted.'), 'mail-account', $content['acc_id'], 'delete');
|
||||
Framework::window_close();
|
||||
}
|
||||
else
|
||||
|
@ -107,6 +107,9 @@ class mail_hooks
|
||||
),
|
||||
'entry' => 'Mail',
|
||||
'entries' => 'Mails',
|
||||
'additional' => [
|
||||
'mail-account' => []
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -588,7 +588,7 @@ app.classes.mail = AppJS.extend(
|
||||
if (_type === 'delete' && !this.egw.dataHasUID('mail::'+_id)) return false;
|
||||
break;
|
||||
|
||||
case 'emailadmin': // update tree with given mail account _id and _type
|
||||
case 'mail-account': // update tree with given mail account _id and _type
|
||||
var tree = this.et2 ? this.et2.getWidgetById(this.nm_index+'[foldertree]') : null;
|
||||
if (!tree) break;
|
||||
var node = tree.getNode(_id);
|
||||
|
Loading…
Reference in New Issue
Block a user