Changeset 5408 in subversion
- Timestamp:
- Nov 10, 2011 3:50:32 AM (19 months ago)
- Location:
- trunk/plugins/acl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/acl/acl.js
r5263 r5408 2 2 * ACL plugin script 3 3 * 4 * @version 0.6. 24 * @version 0.6.3 5 5 * @author Aleksander Machniak <alec@alec.pl> 6 6 */ -
trunk/plugins/acl/acl.php
r5263 r5408 4 4 * Folders Access Control Lists Management (RFC4314, RFC2086) 5 5 * 6 * @version 0.6. 26 * @version 0.6.3 7 7 * @author Aleksander Machniak <alec@alec.pl> 8 8 * … … 92 92 93 93 if ($this->init_ldap()) { 94 $this->ldap->set_pagesize((int)$this->rc->config->get('autocomplete_max', 15)); 95 $result = $this->ldap->search('*', $search); 94 $max = (int) $this->rc->config->get('autocomplete_max', 15); 95 $mode = (int) $this->rc->config->get('addressbook_search_mode'); 96 97 $this->ldap->set_pagesize($max); 98 $result = $this->ldap->search('*', $search, $mode); 96 99 97 100 foreach ($result->records as $record) {
Note: See TracChangeset
for help on using the changeset viewer.
