diff options
author | svncommit <devs@roundcube.net> | 2006-01-18 11:51:26 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2006-01-18 11:51:26 +0000 |
commit | eea43f7c99d9b0884229996d7fb9b1e3d98df177 (patch) | |
tree | 2771b3224a5ffb64a08efd9af23488925c828a1e /program/steps | |
parent | 39ecb7d0c26c6b72b4e938b2616f6e8ef5efe3f4 (diff) |
better explanation of ldap_public in config file. changed check for ldap public config to isset
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/addressbook/ldapsearchform.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/addressbook/ldapsearchform.inc b/program/steps/addressbook/ldapsearchform.inc index 5e414ba3e..5c04406c5 100644 --- a/program/steps/addressbook/ldapsearchform.inc +++ b/program/steps/addressbook/ldapsearchform.inc @@ -26,7 +26,7 @@ require_once 'include/rcube_ldap.inc'; function rcmail_ldap_public_search_form($attrib) { global $CONFIG, $JS_OBJECT_NAME, $OUTPUT; - if (!$CONFIG['ldap_public']) + if (!isset($CONFIG['ldap_public'])) { // no ldap servers to search show_message('noldapserver', 'warning'); |