From: Jan Schneider Date: Tue, 19 Oct 2010 17:24:05 +0000 (+0200) Subject: Fix session initialization again. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=1de0dc71fb447ae6131c0091c6fd41af47cf064c;p=horde.git Fix session initialization again. --- diff --git a/framework/SyncML/SyncML/Backend/Horde.php b/framework/SyncML/SyncML/Backend/Horde.php index 9851476b9..1a9d4386b 100644 --- a/framework/SyncML/SyncML/Backend/Horde.php +++ b/framework/SyncML/SyncML/Backend/Horde.php @@ -65,7 +65,8 @@ class SyncML_Backend_Horde extends SyncML_Backend { /* Only the server needs to start a session. */ if ($this->_backendMode == SYNCML_BACKENDMODE_SERVER) { /* Reload the Horde SessionHandler if necessary. */ - $GLOBALS['session'] = new Horde_Session(false); + $GLOBALS['session'] = new Horde_Session(); + $GLOBALS['session']->start(false); } parent::sessionStart($syncDeviceID, $sessionId, $backendMode);