Changeset 2d3e2bc in github for program/include/rcube_ldap.php
- Timestamp:
- Sep 21, 2011 7:17:46 AM (20 months ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.7, release-0.8
- Children:
- 7f03884
- Parents:
- c054ec5
- File:
-
- 1 edited
-
program/include/rcube_ldap.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
program/include/rcube_ldap.php
r015decf r2d3e2bc 72 72 { 73 73 $this->prop = $p; 74 75 if (isset($p['searchonly'])) 76 $this->searchonly = $p['searchonly']; 74 77 75 78 // check if groups are configured … … 430 433 function list_records($cols=null, $subset=0) 431 434 { 435 if ($this->prop['searchonly'] && empty($this->filter) && !$this->group_id) { 436 $this->result = new rcube_result_set(0); 437 $this->result->searchonly = true; 438 return $this->result; 439 } 440 432 441 // add general filter to query 433 442 if (!empty($this->prop['filter']) && empty($this->filter))
Note: See TracChangeset
for help on using the changeset viewer.
