diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-06-19 19:32:48 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-06-19 19:32:48 +0200 |
commit | b200258d5af08ff24065d58c96d8ccf834d1ffad (patch) | |
tree | 25ec03b263c34c1315a324a6f5036ef9b89bf20f /program/lib/Roundcube/rcube_config.php | |
parent | 8862f67513bac25b1a835ed9ae31bff1bf218ad4 (diff) |
Fixed so ldap cache can be disabled
Fixed issue where ldap groups cache wasn't used correctly
Diffstat (limited to 'program/lib/Roundcube/rcube_config.php')
-rw-r--r-- | program/lib/Roundcube/rcube_config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_config.php b/program/lib/Roundcube/rcube_config.php index 18055f77d..913eacb05 100644 --- a/program/lib/Roundcube/rcube_config.php +++ b/program/lib/Roundcube/rcube_config.php @@ -194,7 +194,7 @@ class rcube_config */ public function get($name, $def = null) { - if (isset($this->prop[$name])) { + if (array_key_exists($name, $this->prop)) { $result = $this->prop[$name]; } else { |