Ignore:
Timestamp:
2013/05/10 19:14:19 (11 years ago)
Author:
m_uehara
Message:

#2171 カートの値取得処理のモバイル対応

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/pages/cart/LC_Page_Cart.php

    r22608 r22805  
    8989        $objFormParam = $this->lfInitParam($_POST); 
    9090        $this->mode = $this->getMode(); 
     91         
     92        // モバイル対応 
     93        if(SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE) { 
     94            if(isset($_GET['cart_no'])) $objFormParam->setValue('cart_no', $_GET['cart_no']); 
     95            if(isset($_GET['cartKey'])) $objFormParam->setValue('cartKey', $_GET['cartKey']); 
     96        } 
    9197 
    9298        $this->cartKeys = $objCartSess->getKeys(); 
Note: See TracChangeset for help on using the changeset viewer.