From 5b3e568036be1d349ab47bf896d81285c8e02a5e Mon Sep 17 00:00:00 2001
From: Thomas <thomas@roundcube.net>
Date: Wed, 15 Jan 2014 03:09:00 -0500
Subject: [PATCH] Merge branch 'release-0.9-ldap-groups' into release-0.9-kolab-ucs

---
 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 3edec42..53d22e1 100644
--- a/program/lib/Roundcube/rcube_config.php
+++ b/program/lib/Roundcube/rcube_config.php
@@ -192,7 +192,7 @@
      */
     public function get($name, $def = null)
     {
-        if (isset($this->prop[$name])) {
+        if (array_key_exists($name, $this->prop)) {
             $result = $this->prop[$name];
         }
         else {

--
Gitblit v1.9.1