Ignore:
Timestamp:
2014/10/14 12:07:56 (10 years ago)
Author:
kim
Message:

#2565 r23491 r23493 をリバート

既存関数の削除が影響が大き為、2.13.3では見送り、後方互換をがはいれば、2.13.4では採用を検討

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13_3/data/class/sessionfactory/SC_SessionFactory_UseRequest.php

    r23546 r23655  
    3535class SC_SessionFactory_UseRequest extends SC_SessionFactory_Ex 
    3636{ 
    37     /** @var LC_UseRequest_State_Mobile|LC_UseRequest_State_PC  */ 
    3837    public $state = null; 
    3938 
     
    177176 
    178177        // セッションIDの存在をチェックする。 
    179         if ($this->sfSessRead($sessionId) === null) { 
     178        $objSession = new SC_Helper_Session_Ex(); 
     179        if ($objSession->sfSessRead($sessionId) === null) { 
    180180            GC_Utils_Ex::gfPrintLog("Non-existent session id : sid=$sessionId"); 
    181181 
     
    193193    public function initSession() 
    194194    { 
    195         parent::initSession(); 
    196  
    197195        // セッションIDの受け渡しにクッキーを使用しない。 
    198196        ini_set('session.use_cookies', '0'); 
Note: See TracChangeset for help on using the changeset viewer.