Ignore:
Timestamp:
2012/02/15 20:18:09 (12 years ago)
Author:
Seasoft
Message:

#1625 (typo修正・ソース整形・ソースコメントの改善)

Location:
branches/version-2_12-dev/data/class/pages/mypage
Files:
3 edited

Legend:

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

    r21514 r21515  
    130130    function lfInitParam(&$objFormParam) { 
    131131        $objFormParam->addParam('お届け先ID', 'other_deliv_id', INT_LEN, '', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK')); 
    132         $objFormParam->addParam('現在ページ', 'pageno', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'), "", false); 
     132        $objFormParam->addParam('現在ページ', 'pageno', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'), '', false); 
    133133    } 
    134134 
  • branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_DeliveryAddr.php

    r21514 r21515  
    172172    function lfGetOtherDeliv($customer_id, $other_deliv_id) { 
    173173        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    174         return $objQuery->select('*', 'dtb_other_deliv', "customer_id = ? AND other_deliv_id = ?", array($customer_id, $other_deliv_id)); 
     174        return $objQuery->select('*', 'dtb_other_deliv', 'customer_id = ? AND other_deliv_id = ?', array($customer_id, $other_deliv_id)); 
    175175    } 
    176176 
  • branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_DownLoad.php

    r21514 r21515  
    215215        header('Content-Disposition: attachment; filename=' . $sdown_filename); 
    216216        header('Accept-Ranges: bytes'); 
    217         header('Last-Modified: ' . gmdate('D,d M Y H:i:s') . " GMT"); 
     217        header('Last-Modified: ' . gmdate('D,d M Y H:i:s') . ' GMT'); 
    218218        header('Cache-Control: public'); 
    219219    } 
     
    330330        //キャッシュ無効化 
    331331        header('Expires: Mon, 26 Nov 1962 00:00:00 GMT'); 
    332         header('Last-Modified: ' . gmdate('D,d M Y H:i:s') . " GMT"); 
     332        header('Last-Modified: ' . gmdate('D,d M Y H:i:s') . ' GMT'); 
    333333        //IE6+SSL環境下は、キャッシュ無しでダウンロードできない 
    334334        header('Cache-Control: private'); 
Note: See TracChangeset for help on using the changeset viewer.