Ignore:
Timestamp:
2007/10/08 19:40:30 (16 years ago)
Author:
naka
Message:

GC_Mobile*→SC_Mobile*に変換

Location:
branches/feature-module-update/data/downloads/module/mdl_epsilon
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/downloads/module/mdl_epsilon/card.php

    r15532 r16329  
    7373 
    7474    // 完了画面へ 
    75     if (is_callable(GC_MobileUserAgent) && GC_MobileUserAgent::isMobile()) { 
     75    if (is_callable(SC_MobileUserAgent) && SC_MobileUserAgent::isMobile()) { 
    7676        header("Location: " .  gfAddSessionId(URL_SHOP_COMPLETE)); 
    7777    } else { 
     
    135135         
    136136        // 携帯端末の場合は、セッションID・オーダー番号・戻ってくるURLを保存しておく。 
    137         if (is_callable(GC_MobileUserAgent) && GC_MobileUserAgent::isMobile()) { 
     137        if (is_callable(SC_MobileUserAgent) && SC_MobileUserAgent::isMobile()) { 
    138138            sfMobileSetExtSessionId('order_number', $arrData['order_id'], 'shopping/load_payment_module.php'); 
    139139            sfMobileSetExtSessionId('order_number', $arrData['order_id'], 'shopping/confirm.php'); 
  • branches/feature-module-update/data/downloads/module/mdl_epsilon/convenience.php

    r15532 r16329  
    1212class LC_Page { 
    1313    function LC_Page() { 
    14         if (is_callable(GC_MobileUserAgent) && GC_MobileUserAgent::isMobile()) { 
     14        if (is_callable(SC_MobileUserAgent) && SC_MobileUserAgent::isMobile()) { 
    1515            $this->tpl_mainpage = MODULE_PATH . "mdl_epsilon/convenience_mobile.tpl"; 
    1616        } else { 
     
    7070        $objSiteSess->setRegistFlag(); 
    7171        // 確認ページへ移動 
    72         if (is_callable(GC_MobileUserAgent) && GC_MobileUserAgent::isMobile()) { 
     72        if (is_callable(SC_MobileUserAgent) && SC_MobileUserAgent::isMobile()) { 
    7373            header("Location: " . gfAddSessionId(URL_SHOP_CONFIRM)); 
    7474        } else { 
     
    210210                sfRegistTempOrder($uniqid, $sqlval); 
    211211 
    212                 if (is_callable(GC_MobileUserAgent) && GC_MobileUserAgent::isMobile()) { 
     212                if (is_callable(SC_MobileUserAgent) && SC_MobileUserAgent::isMobile()) { 
    213213                    header("Location: " . gfAddSessionId(URL_SHOP_COMPLETE)); 
    214214                } else { 
Note: See TracChangeset for help on using the changeset viewer.