plugins/libkolab

Aleksander Machniak machniak at kolabsys.com
Mon Sep 30 15:44:41 CEST 2013


 plugins/libkolab/libkolab.php |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e4bcac46502ba17ed987e5c41c890ae4f7094fc6
Author: Aleksander Machniak <machniak at kolabsys.com>
Date:   Mon Sep 30 15:43:39 2013 +0200

    Fix typo in new http_request() method, fixes deprecated options handling

diff --git a/plugins/libkolab/libkolab.php b/plugins/libkolab/libkolab.php
index b5d1db7..48a5033 100644
--- a/plugins/libkolab/libkolab.php
+++ b/plugins/libkolab/libkolab.php
@@ -78,7 +78,7 @@ class libkolab extends rcube_plugin
         $http_config = (array) $rcube->config->get('kolab_http_request');
 
         // deprecated configuration options
-        if (empty($$http_config)) {
+        if (empty($http_config)) {
             foreach (array('ssl_verify_peer', 'ssl_verify_host') as $option) {
                 $value = $rcube->config->get('kolab_' . $option, true);
                 if (is_bool($value)) {




More information about the commits mailing list