diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-11-13 19:44:52 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-11-13 19:44:52 +0100 |
commit | 540e13b8d50a52e9cb479e36bc6d1e16275a2cd5 (patch) | |
tree | 60dbd1b66f8762d6e6a79b0d9957cb323d17204a /program/include | |
parent | d9698de979f6d30b5126472edd4af60c43aba870 (diff) |
Fix warning when 'autovalues' property isn't set
Diffstat (limited to 'program/include')
-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']; } |