Code

Updated contrib conf
[gosa.git] / gosa-core / include / class_ldap.inc
index ac5e1e47a9a0bcc3b32ffbde8db8bc1c188d473a..19d8c1d521d1fe2337be485a91398cc5416cb1e8 100644 (file)
@@ -60,8 +60,8 @@ class LDAP{
     $this->hostname=$hostname;
 
     /* Check if MAX_LDAP_QUERY_TIME is defined */ 
-    if(is_object($config) && $config->get_cfg_value("max_ldap_query_time") != ""){
-      $str = $config->get_cfg_value("max_ldap_query_time");
+    if(is_object($config) && $config->get_cfg_value("ldapMaxQueryTime") != ""){
+      $str = $config->get_cfg_value("ldapMaxQueryTime");
       $this->max_ldap_query_time = (float)($str);
     }
 
@@ -1195,7 +1195,7 @@ class LDAP{
 
     /* Only read schema if it is allowed */
     if(isset($config) && preg_match("/config/i",get_class($config))){
-      if ($config->get_cfg_value("schema_check") != "true"){
+      if ($config->get_cfg_value("schemaCheck") != "true"){
         return($objectclasses);
       } 
     }