Ignore:
Timestamp:
2013/05/13 19:38:25 (11 years ago)
Author:
michael_nelson
Message:

#2238 mobileの部分を対応しました。

File:
1 edited

Legend:

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

    r22800 r22816  
    8686        $this->mode = $this->getMode(); 
    8787 
    88         $this->cartKeys = $objCartSess->getKeys(); 
     88        // モバイル対応 
     89        if (SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE) { 
     90            if (isset($_GET['cart_no'])) { 
     91                $objFormParam->setValue('cart_no', $_GET['cart_no']); 
     92            } 
     93            if (isset($_GET['cartKey'])) { 
     94                    $objFormParam->setValue('cartKey', $_GET['cartKey']); 
     95            } 
     96        } 
     97         
     98        $this->cartKeys = $objCartSess->getKeys(); 
    8999        foreach ($this->cartKeys as $key) { 
    90100            // 商品購入中にカート内容が変更された。 
Note: See TracChangeset for help on using the changeset viewer.