corbosman
2015-03-04 82058d7af26ff04fd95442815b93f944cea46f10
minor fixes
3 files modified
7 ■■■■■ changed files
program/lib/Roundcube/rcube.php 2 ●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_session_db.php 2 ●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_session_redis.php 3 ●●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube.php
@@ -520,7 +520,7 @@
        ini_set('session.use_cookies', 1);
        ini_set('session.use_only_cookies', 1);
        ini_set('session.cookie_httponly', 1);
        // get session driver instance
        $this->session = rcube_session::factory($this->config);
program/lib/Roundcube/rcube_session_db.php
@@ -41,7 +41,7 @@
        parent::__construct($config);
        // get db instance
        $this->db      = rcube::get_instance()->get_dbh();
        $this->db = rcube::get_instance()->get_dbh();
        // session table name
        $this->table_name = $this->db->table_name('session', true);
program/lib/Roundcube/rcube_session_redis.php
@@ -4,14 +4,13 @@
 +-----------------------------------------------------------------------+
 | This file is part of the Roundcube Webmail client                     |
 | Copyright (C) 2005-2014, The Roundcube Dev Team                       |
 | Copyright (C) 2011, Kolab Systems AG                                  |
 |                                                                       |
 | Licensed under the GNU General Public License version 3 or            |
 | any later version with exceptions for skins & plugins.                |
 | See the README file for a full license statement.                     |
 |                                                                       |
 | PURPOSE:                                                              |
 |   Provide database supported session management                       |
 |   Provide redis supported session management                       |
 +-----------------------------------------------------------------------+
 | Author: Cor Bosman <cor@roundcu.be>                                   |
 +-----------------------------------------------------------------------+