Changeset 5263 in subversion
- Timestamp:
- Sep 21, 2011 1:35:04 PM (21 months ago)
- Location:
- trunk/plugins/acl
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/acl/acl.js
r5147 r5263 2 2 * ACL plugin script 3 3 * 4 * @version 0.6. 14 * @version 0.6.2 5 5 * @author Aleksander Machniak <alec@alec.pl> 6 6 */ … … 316 316 if (type == 'user') 317 317 name_input.focus(); 318 319 // unfocus the list, make backspace key in name input field working 320 this.acl_list.blur(); 318 321 } 319 322 -
trunk/plugins/acl/acl.php
r5147 r5263 4 4 * Folders Access Control Lists Management (RFC4314, RFC2086) 5 5 * 6 * @version 0.6. 16 * @version 0.6.2 7 7 * @author Aleksander Machniak <alec@alec.pl> 8 8 * … … 88 88 89 89 $search = get_input_value('_search', RCUBE_INPUT_GPC, true); 90 $sid = get_input_value('_id', RCUBE_INPUT_GPC); 90 91 $users = array(); 91 92 92 93 if ($this->init_ldap()) { 93 $this->ldap->set_pagesize( 15);94 $this->ldap->set_pagesize((int)$this->rc->config->get('autocomplete_max', 15)); 94 95 $result = $this->ldap->search('*', $search); 95 96 … … 113 114 sort($users, SORT_LOCALE_STRING); 114 115 115 $this->rc->output->command('ksearch_query_results', $users, $search );116 $this->rc->output->command('ksearch_query_results', $users, $search, $sid); 116 117 $this->rc->output->send(); 117 118 } … … 186 187 'aclrights' => array($this, 'templ_rights'), 187 188 )); 189 190 $this->rc->output->set_env('autocomplete_max', (int)$this->rc->config->get('autocomplete_max', 15)); 191 $this->rc->output->set_env('autocomplete_min_length', $this->rc->config->get('autocomplete_min_length')); 192 $this->rc->output->add_label('autocompletechars', 'autocompletemore'); 188 193 189 194 $args['form']['sharing'] = array( -
trunk/plugins/acl/skins/default/acl.css
r5147 r5263 62 62 } 63 63 64 #acltable tr.unfocused td 65 { 66 color: #FFFFFF; 67 background-color: #929292; 68 } 69 64 70 #acladvswitch 65 71 {
Note: See TracChangeset
for help on using the changeset viewer.
