Ignore:
Timestamp:
2011/01/19 21:30:46 (13 years ago)
Author:
kotani
Message:

#880(mobile/sphoneディレクトリを削除)に対応。モバイルサイトのログインチェック部分で携帯メールアドレスをチェックしないように。(漏れていた部分を修正)

Location:
branches/version-2_5-dev/data/class/pages
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/mypage/LC_Page_Mypage_Change.php

    r19986 r19991  
    9090         
    9191        // ログインチェック 
    92         if (!$objCustomer->isLoginSuccess()){ 
     92        if (!$objCustomer->isLoginSuccess(true)){ 
    9393            SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR); 
    9494        }else { 
  • branches/version-2_5-dev/data/class/pages/mypage/LC_Page_Mypage_DeliveryAddr.php

    r19961 r19991  
    143143                    } 
    144144                     
    145                     if ($objCustomer->isLoginSuccess()) { 
     145                    if ($objCustomer->isLoginSuccess(true)) { 
    146146                        $this->lfRegistData($_POST, $arrRegistColumn, $objCustomer); 
    147147                    } else { 
  • branches/version-2_5-dev/data/class/pages/mypage/LC_Page_Mypage_History.php

    r19959 r19991  
    8989        $cnt = $objQuery->count($from, $where, $arrval); 
    9090        //ログインしていない、またはDBに情報が無い場合 
    91         if (!$objCustomer->isLoginSuccess() || $cnt == 0){ 
     91        if (!$objCustomer->isLoginSuccess(true) || $cnt == 0){ 
    9292            SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR); 
    9393        } 
  • branches/version-2_5-dev/data/class/pages/mypage/LC_Page_Mypage_MailView.php

    r19959 r19991  
    6767 
    6868        // ログインチェック 
    69         if(!$objCustomer->isLoginSuccess()) { 
     69        if(!$objCustomer->isLoginSuccess(true)) { 
    7070            SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR); 
    7171        } 
  • branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Multiple.php

    r19927 r19991  
    3030 * @package Page 
    3131 * @author LOCKON CO.,LTD. 
    32  * @version $Id$ 
     32 * @version $Id: $ 
    3333 */ 
    3434class LC_Page_Shopping_Multiple extends LC_Page { 
     
    107107                    while ($params['cart_no' . $i] != null) { 
    108108                        $other_deliv_id = $params['shipping' . $i]; 
    109                         if ($objCustomer->isLoginSuccess()) { 
     109                        if ($objCustomer->isLoginSuccess(true)) { 
    110110                            if ($other_deliv_id != 0) { 
    111111                                $otherDeliv = $objQuery->select("*", "dtb_other_deliv", 
     
    186186     */ 
    187187    function getDelivAddrs(&$objCustomer, &$objPurchase, $uniqid) { 
    188         if ($objCustomer->isLoginSuccess()) { 
     188        if ($objCustomer->isLoginSuccess(true)) { 
    189189            $addrs = $objCustomer->getCustomerAddress($_SESSION['customer']['customer_id']); 
    190190            $results = array(); 
  • branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Payment.php

    r19943 r19991  
    102102 
    103103        // 会員ログインチェック 
    104         if($this->objCustomer->isLoginSuccess()) { 
     104        if($this->objCustomer->isLoginSuccess(true)) { 
    105105            $this->tpl_login = '1'; 
    106106            $this->tpl_user_point = $this->objCustomer->getValue('point'); 
Note: See TracChangeset for help on using the changeset viewer.