From e2a8b4dd6d6d2160fcb6b03a54da848478eb9c75 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Thu, 06 Oct 2011 08:31:38 -0400 Subject: [PATCH] Skip VLV if a group is selected; show advanced search form if activating a 'searchonly' address book --- program/include/rcube_ldap.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/program/include/rcube_ldap.php b/program/include/rcube_ldap.php index d1a6c80..97b0e7e 100644 --- a/program/include/rcube_ldap.php +++ b/program/include/rcube_ldap.php @@ -934,7 +934,7 @@ $this->_debug("C: Search [$filter]"); // when using VLV, we get the total count by... - if (!$count && $function != 'ldap_read' && $this->prop['vlv']) { + if (!$count && $function != 'ldap_read' && $this->prop['vlv'] && !$this->group_id) { // ...either reading numSubOrdinates attribute if ($this->prop['numsub_filter'] && ($result_count = @$function($this->conn, $this->base_dn, $this->prop['numsub_filter'], array('numSubOrdinates'), 0, 0, 0))) { $counts = ldap_get_entries($this->conn, $result_count); -- Gitblit v1.9.1