If user changes the account or location, this changes the ACL ID. Remove the previous ID if it is an edit.

This commit is contained in:
Nathan Gray 2014-10-07 23:21:58 +00:00
parent 302e7c8d8c
commit ec2f474b16

View File

@ -552,6 +552,13 @@ app.classes.admin = AppJS.extend(
if(_value.acl_account && (_value.acl_appname && _value.acl_location || _value.apps))
{
var id = _value.acl_appname+':'+_value.acl_account+':'+_value.acl_location;
if(content && content.id && id != content.id)
{
// Changed the account or location, remove previous or we
// get a new line instead of an edit
this.egw.json(className+'::ajax_change_acl', [content.id, 0], null,this,false,this)
.sendRequest();
}
var rights = 0;
for(var i in _value.acl)
{