Ignore:
Timestamp:
2012/04/18 18:45:37 (12 years ago)
Author:
shutta
Message:

#1766 拡張クラスの整備
拡張クラス(*_Ex)が抜けているものを補完(LC_Page_Upgrade_*, LC_Upgrade_helper_*以外)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/SC_SessionFactory.php

    r21624 r21771  
    6161            // セッションの維持にリクエストパラメーターを使用する 
    6262            case 'useRequest': 
    63                 $session = new SC_SessionFactory_UseRequest; 
     63                $session = new SC_SessionFactory_UseRequest_Ex; 
    6464                SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE 
    6565                    ? $session->setState('mobile') 
     
    7272                // モバイルの場合はSC_SessionFactory_UseRequestを使用する 
    7373                if (SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE) { 
    74                     $session = new SC_SessionFactory_UseRequest; 
     74                    $session = new SC_SessionFactory_UseRequest_Ex; 
    7575                    $session->setState('mobile'); 
    7676                } else { 
    77                     $session = new SC_SessionFactory_UseCookie; 
     77                    $session = new SC_SessionFactory_UseCookie_Ex; 
    7878                } 
    7979                break; 
Note: See TracChangeset for help on using the changeset viewer.