Commit 9b079fbdd36b3a39221755fcea7dd99fcfe5bc94
1 parent
7378dc03
Exists in
master
and in
1 other branch
bugfixing...
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/Model/Table/LdapConnectionsTable.php
... | ... | @@ -12,9 +12,9 @@ const DEFAULT_AUTH_TYPE = 'uid'; |
12 | 12 | |
13 | 13 | // On active systématiquement le cache ldap (table bd users) ou pas ? (activation forcée) |
14 | 14 | // - OUI => le CACHE LDAP (table users) est systématiquement utilisé |
15 | -//const LDAP_CACHE_ALWAYS_ON = true; | |
15 | +const LDAP_CACHE_ALWAYS_ON = true; | |
16 | 16 | // - NON => le CACHE LDAP (table users) n'est utilisé QUE si l'option ldap_cached est activée dans la config |
17 | -const LDAP_CACHE_ALWAYS_ON = false; | |
17 | +//const LDAP_CACHE_ALWAYS_ON = false; | |
18 | 18 | |
19 | 19 | |
20 | 20 | class LdapConnectionsTable extends AppTable | ... | ... |