diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-07-16 07:54:16 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-07-16 07:54:16 +0000 |
| commit | 4c190cd94bffc0a6289287c7c8d88f00267af6cd (patch) | |
| tree | 58ce463377d33da232c7ffad94af0a52122daaea /roundcubemail | |
| parent | bad5af2ae3b19edd2cf115116fb36e2bba63b10c (diff) | |
- fix for ldap_public value checking
git-svn-id: https://svn.roundcube.net/trunk@1592 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail')
| -rw-r--r-- | roundcubemail/program/steps/mail/compose.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/mail/compose.inc b/roundcubemail/program/steps/mail/compose.inc index 5d23c1533..f3ab4cec6 100644 --- a/roundcubemail/program/steps/mail/compose.inc +++ b/roundcubemail/program/steps/mail/compose.inc @@ -823,7 +823,7 @@ if ($result = $CONTACTS->list_records()) if ($sql_arr['email']) $a_contacts[] = format_email_recipient($sql_arr['email'], $sql_arr['name']); } -if (isset($CONFIG['ldap_public'])) +if (!empty($CONFIG['ldap_public']) && is_array($CONFIG['ldap_public'])) { /* LDAP autocompletion */ foreach ($CONFIG['ldap_public'] as $ldapserv_config) |
