mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-15 20:44:27 +01:00
* Admin: fix not working setting of ACL for account-selection "select-box with primary group and search", data from contains no selection
This commit is contained in:
parent
af8e1022e1
commit
03ee1a20d0
@ -472,27 +472,7 @@ app.classes.admin = AppJS.extend(
|
||||
}
|
||||
}
|
||||
|
||||
// Make sure selected values are there, account might not be in a default group
|
||||
// so not in cache
|
||||
if(content.acl_account && egw.user('apps')['admin'])
|
||||
{
|
||||
var accounts = this.egw.accounts('both');
|
||||
var there = false;
|
||||
for(var i = 0; i < accounts.length; i++)
|
||||
{
|
||||
if(accounts[i].value == content.acl_account)
|
||||
{
|
||||
there = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if(!there)
|
||||
{
|
||||
sel_options.acl_account = new Array().concat(sel_options.acl_account);
|
||||
this.egw.link_title('home-accounts', content.acl_account, function(title) {sel_options.acl_account.push({value: content.acl_account, label: title});});
|
||||
}
|
||||
}
|
||||
else if (content.acl_account)
|
||||
if(content.acl_account && !egw.user('apps')['admin'])
|
||||
{
|
||||
readonlys.acl_account = true;
|
||||
}
|
||||
|
@ -2,7 +2,7 @@
|
||||
<!-- $Id$ -->
|
||||
<overlay>
|
||||
<template id="admin.acl.add" template="" lang="" group="0" version="1.9.001">
|
||||
<buttononly label="Add" id="add" onclick='app.admin.acl({id:"add"},{0:{id:""}})'/>
|
||||
<buttononly label="Add" id="add" onclick='app.admin.acl({id:"add"},[{id:""}])'/>
|
||||
</template>
|
||||
<template id="admin.acl.rows" template="" lang="" group="0" version="1.9.001">
|
||||
<grid width="100%">
|
||||
|
Loading…
Reference in New Issue
Block a user