Ignore:
Timestamp:
2014/06/02 15:12:19 (10 years ago)
Author:
pineray
Message:

#2565 セッションに関するクラスや関数を整理

セッションハンドラの登録をファクトリーへ移動.

File:
1 edited

Legend:

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

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