mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 09:23:28 +01:00
* ImportExport: links supposed to open in admin did not show admin sidebox with tree
This commit is contained in:
parent
c62b555241
commit
c27c74e94d
@ -319,6 +319,12 @@ egw.extend('open', egw.MODULE_WND_LOCAL, function(_egw, _wnd)
|
||||
*/
|
||||
link_handler: function(_url, _target)
|
||||
{
|
||||
// if url is supposed to open in admin, use admins loader to open it in it's own iframe
|
||||
// (otherwise there's no tree and sidebox!)
|
||||
if (_target === 'admin' && !_url.match(/menuaction=admin\.admin_ui\.index/))
|
||||
{
|
||||
_url = _url.replace(/menuaction=([^&]+)/, 'menuaction=admin.admin_ui.index&load=$1');
|
||||
}
|
||||
if (_wnd.framework)
|
||||
{
|
||||
_wnd.framework.linkHandler(_url, _target);
|
||||
|
Loading…
Reference in New Issue
Block a user