Fix missing resolving of %dn in kolab_auth_role_settings
This commit is contained in:
parent
3a9e25e056
commit
d7a607e1b1
1 changed files with 2 additions and 1 deletions
|
@ -169,8 +169,9 @@ class kolab_auth extends rcube_plugin
|
|||
|
||||
if (!empty($role_settings)) {
|
||||
foreach ($role_settings as $role_dn => $settings) {
|
||||
$role_dn = self::parse_ldap_vars($role_dn);
|
||||
if (!empty($role_settings[$role_dn])) {
|
||||
$role_settings[$role_dn] = array_merge((array)$role_settings[$role_dn], $settings);
|
||||
$role_settings[$role_dn] = array_merge((array)$role_settings[$role_dn], $settings);
|
||||
} else {
|
||||
$role_settings[$role_dn] = $settings;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue