Ignore:
Timestamp:
2011/03/04 21:54:51 (13 years ago)
Author:
shutta
Message:

SC_MobileUserAgentクラスのclass_extends対応

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/SC_Customer.php

    r20448 r20495  
    111111    function checkMobilePhoneId() { 
    112112        //docomo用にデータを取り出す。 
    113         if(SC_MobileUserAgent::getCarrier() == 'docomo'){ 
     113        if(SC_MobileUserAgent_Ex::getCarrier() == 'docomo'){ 
    114114            if($_SESSION['mobile']['phone_id'] == "" && strlen($_SESSION['mobile']['phone_id']) == 0) 
    115                 $_SESSION['mobile']['phone_id'] = SC_MobileUserAgent::getId(); 
     115                $_SESSION['mobile']['phone_id'] = SC_MobileUserAgent_Ex::getId(); 
    116116        } 
    117117        if (!isset($_SESSION['mobile']['phone_id']) || $_SESSION['mobile']['phone_id'] === false) { 
     
    136136    function getCustomerDataFromMobilePhoneIdPass($pass) { 
    137137        //docomo用にデータを取り出す。 
    138         if(SC_MobileUserAgent::getCarrier() == 'docomo'){ 
     138        if(SC_MobileUserAgent_Ex::getCarrier() == 'docomo'){ 
    139139            if($_SESSION['mobile']['phone_id'] == "" && strlen($_SESSION['mobile']['phone_id']) == 0) 
    140                 $_SESSION['mobile']['phone_id'] = SC_MobileUserAgent::getId(); 
     140                $_SESSION['mobile']['phone_id'] = SC_MobileUserAgent_Ex::getId(); 
    141141        } 
    142142        if (!isset($_SESSION['mobile']['phone_id']) || $_SESSION['mobile']['phone_id'] === false) { 
Note: See TracChangeset for help on using the changeset viewer.