mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-02 11:29:23 +01:00
fix for community.egroupware.org bug #3027: Open item in element list no longer working
This commit is contained in:
parent
890efd006b
commit
d295c17e90
@ -24,7 +24,7 @@ if (window.opener && typeof window.opener.egw == 'object')
|
||||
{
|
||||
egw = window.opener.egw;
|
||||
}
|
||||
else if (window.top == 'object' && window.top.egw == 'object')
|
||||
else if (window.top && typeof window.top.egw == 'object')
|
||||
{
|
||||
egw = window.top.egw;
|
||||
}
|
||||
|
@ -265,7 +265,7 @@ function egw_refresh(_msg, _app, _id, _type, _targetapp, _replace, _with)
|
||||
*/
|
||||
function egw_open(id, app, type, extra, target)
|
||||
{
|
||||
window.egw.open();
|
||||
window.egw.open(id, app, type, extra, target);
|
||||
}
|
||||
|
||||
window.egw_getFramework = function()
|
||||
|
Loading…
Reference in New Issue
Block a user