From 93c01888547210f54bd593d0774f9f63ec38f7a7 Mon Sep 17 00:00:00 2001 From: alecpl Date: Wed, 21 Apr 2010 13:44:14 +0000 Subject: - Add sizelimit and timelimit variables in LDAP config (#1486544) --- program/include/rcube_ldap.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'program') diff --git a/program/include/rcube_ldap.php b/program/include/rcube_ldap.php index 4cacd5232..04ccd6cb2 100644 --- a/program/include/rcube_ldap.php +++ b/program/include/rcube_ldap.php @@ -627,7 +627,9 @@ class rcube_ldap extends rcube_addressbook $this->_debug("C: Search [".$filter."]"); - if ($this->ldap_result = @$function($this->conn, $this->prop['base_dn'], $filter, array_values($this->fieldmap), 0, 0)) { + if ($this->ldap_result = @$function($this->conn, $this->prop['base_dn'], $filter, + array_values($this->fieldmap), 0, (int) $this->prop['sizelimit'], (int) $this->prop['timelimit']) + ) { $this->_debug("S: ".ldap_count_entries($this->conn, $this->ldap_result)." record(s)"); return true; } else -- cgit v1.2.3