From 2b3a3b1407bf2f6a7019f921a177d99506e3b76c Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Tue, 25 Jun 2013 02:58:23 -0400
Subject: [PATCH] Merge branch 'master' of github.com:roundcube/roundcubemail

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

--
Gitblit v1.9.1