summaryrefslogtreecommitdiff
path: root/program/lib/Roundcube/rcube_config.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-06-19 19:32:48 +0200
committerAleksander Machniak <alec@alec.pl>2013-06-19 19:32:48 +0200
commitb200258d5af08ff24065d58c96d8ccf834d1ffad (patch)
tree25ec03b263c34c1315a324a6f5036ef9b89bf20f /program/lib/Roundcube/rcube_config.php
parent8862f67513bac25b1a835ed9ae31bff1bf218ad4 (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.php2
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 {