diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-11-14 13:30:23 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-11-14 13:30:23 +0100 |
commit | c588d08835e3f897b6eb147ece6b5ef2312138f8 (patch) | |
tree | 5ad9e7d626a61b7f87c0beb89b44d4317c214d7d /program/include/rcube_ldap.php | |
parent | d15163ab6ecabde9d12e8674bee37cbe562bd850 (diff) | |
parent | e30500643fbe0c9f9237570b73e59992f776cf0c (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'program/include/rcube_ldap.php')
-rw-r--r-- | program/include/rcube_ldap.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/program/include/rcube_ldap.php b/program/include/rcube_ldap.php index 90ce73ae2..7cef25556 100644 --- a/program/include/rcube_ldap.php +++ b/program/include/rcube_ldap.php @@ -160,7 +160,8 @@ class rcube_ldap extends rcube_addressbook } // make sure LDAP_rdn field is required - if (!empty($this->prop['LDAP_rdn']) && !in_array($this->prop['LDAP_rdn'], $this->prop['required_fields']) && !in_array($this->prop['LDAP_rdn'], array_keys($this->prop['autovalues']))) { + if (!empty($this->prop['LDAP_rdn']) && !in_array($this->prop['LDAP_rdn'], $this->prop['required_fields']) + && !in_array($this->prop['LDAP_rdn'], array_keys((array)$this->prop['autovalues']))) { $this->prop['required_fields'][] = $this->prop['LDAP_rdn']; } |