mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 08:25:03 +02:00
fixed not working referesh of ACL list
This commit is contained in:
@ -257,10 +257,13 @@ function egw_refresh(_msg, _app, _id, _type, _targetapp, _replace, _with, _msg_t
|
||||
}
|
||||
|
||||
// Refresh target or current app too
|
||||
var et2 = etemplate2.getByApplication(_targetapp || egw_appName);
|
||||
for(var i = 0; i < et2.length; i++)
|
||||
if ((_targetapp || egw_appName) != _app)
|
||||
{
|
||||
et2[i].refresh(_msg,_app,_id,_type);
|
||||
var et2t = etemplate2.getByApplication(_targetapp || egw_appName);
|
||||
for(var i = 0; i < et2t.length; i++)
|
||||
{
|
||||
et2t[i].refresh(_msg,_app,_id,_type);
|
||||
}
|
||||
}
|
||||
//In case that we have etemplate2 ready but it's empty
|
||||
if (et2.length >= 1)
|
||||
|
Reference in New Issue
Block a user