浏览代码

Only configure LDAP-addressbook(s) if PHP has LDAP support.

pallo 25 年之前
父节点
当前提交
15e44d4a62
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      functions/addressbook.php

+ 2 - 2
functions/addressbook.php

@@ -33,8 +33,8 @@
       if($onlylocal)
 	return $abook;
 
-      // Load configured LDAP servers
-      if(is_array($ldap_server)) {
+      // Load configured LDAP servers (if PHP has LDAP support)
+      if(is_array($ldap_server) && function_exists("ldap_connect")) {
 	 reset($ldap_server);
 	 while(list($undef,$param) = each($ldap_server)) {
 	    if(is_array($param)) {