mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
* Addressbook: disable custom field tabs, if contact is stored in LDAP, which does not support CFs
This commit is contained in:
parent
51982be2de
commit
eb440fe4d3
@ -1812,8 +1812,8 @@ class addressbook_ui extends addressbook_bo
|
||||
}
|
||||
// disable not needed tabs
|
||||
$readonlys['tabs']['cats'] = !($content['cat_tab'] = $this->config['cat_tab']);
|
||||
$readonlys['tabs']['custom'] = !$this->customfields;
|
||||
$readonlys['tabs']['custom_private'] = !$this->customfields || !$this->config['private_cf_tab'];
|
||||
$readonlys['tabs']['custom'] = !$this->customfields || $this->get_backend($content['id'],$content['owner']) == $this->so_accounts;
|
||||
$readonlys['tabs']['custom_private'] = $readonlys['tabs']['custom'] || !$this->config['private_cf_tab'];
|
||||
$readonlys['tabs']['distribution_list'] = !$content['distrib_lists'];#false;
|
||||
$readonlys['tabs']['history'] = $this->contact_repository == 'ldap' || !$content['id'] ||
|
||||
$this->account_repository == 'ldap' && $content['account_id'];
|
||||
|
Loading…
Reference in New Issue
Block a user