Ignore:
Timestamp:
2014/06/03 14:51:51 (12 years ago)
Author:
shutta
Message:

#2448 typo修正・ソース整形・ソースコメントの改善 for 2.13.3

File:
1 edited

Legend:

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

    r23230 r23503  
    205205        // 前頁のURLを取得 
    206206        // TODO: SC_CartSession::setPrevURL()利用不可。 
    207         $this->lfGetCartPrevUrl($_SESSION,$_SERVER['HTTP_REFERER']); 
     207        $this->lfGetCartPrevUrl($_SESSION, $_SERVER['HTTP_REFERER']); 
    208208        $this->tpl_prev_url = (isset($_SESSION['cart_prev_url'])) ? $_SESSION['cart_prev_url'] : ''; 
    209209 
     
    220220    { 
    221221        $objFormParam = new SC_FormParam_Ex(); 
    222         $objFormParam->addParam('カートキー', 'cartKey', INT_LEN, 'n', array('NUM_CHECK','MAX_LENGTH_CHECK')); 
     222        $objFormParam->addParam('カートキー', 'cartKey', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK')); 
    223223        $objFormParam->addParam('カートナンバー', 'cart_no', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK')); 
    224224        // スマートフォン版での数量変更用 
     
    259259     * @return 
    260260     */ 
    261     public function lfUpdateOrderTempid($pre_uniqid,$uniqid) 
     261    public function lfUpdateOrderTempid($pre_uniqid, $uniqid) 
    262262    { 
    263263        $sqlval['order_temp_id'] = $uniqid; 
     
    277277     * @return void 
    278278     */ 
    279     public function lfGetCartPrevUrl(&$session,$referer) 
     279    public function lfGetCartPrevUrl(&$session, $referer) 
    280280    { 
    281281        if (!preg_match('/cart/', $referer)) { 
     
    312312        // エラーリトライなどで既にuniqidが存在する場合は、設定を引き継ぐ 
    313313        if ($pre_uniqid != '') { 
    314             $this->lfUpdateOrderTempid($pre_uniqid,$uniqid); 
     314            $this->lfUpdateOrderTempid($pre_uniqid, $uniqid); 
    315315        } 
    316316        // カートを購入モードに設定 
Note: See TracChangeset for help on using the changeset viewer.