Ignore:
Timestamp:
2012/02/11 04:20:07 (12 years ago)
Author:
Seasoft
Message:

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

  • ソース整形(主に制御構造のスペース)
Location:
branches/version-2_12-dev/data/class/pages/mypage
Files:
4 edited

Legend:

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

    r21441 r21479  
    136136 
    137137                    //不正アクセス判定 
    138                     if (!$objCustomer->isLoginSuccess(true) 
    139                         || count($arrOtherDeliv) == 0){ 
     138                    if (!$objCustomer->isLoginSuccess(true) || count($arrOtherDeliv) == 0) { 
    140139                        SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR); 
    141140                    } 
  • branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_DownLoad.php

    r21446 r21479  
    208208     * @param string $sdown_filename ダウンロード時の指定ファイル名 
    209209     */ 
    210     function lfMobileHeader($realpath,$sdown_filename){ 
     210    function lfMobileHeader($realpath,$sdown_filename) { 
    211211        $objHelperMobile = new SC_Helper_Mobile_Ex(); 
    212212        //ファイルの拡張子からコンテンツタイプを取得する 
     
    225225     * @param string $sdown_filename ダウンロード時の指定ファイル名 
    226226     */ 
    227     function lfMobileAuDownload($realpath,$sdown_filename){ 
     227    function lfMobileAuDownload($realpath,$sdown_filename) { 
    228228        //モバイル用ヘッダー出力 
    229229        $this->lfMobileHeader($realpath,$sdown_filename); 
     
    257257     * @param string $sdown_filename ダウンロード時の指定ファイル名 
    258258     */ 
    259     function lfMobileDownload($realpath,$sdown_filename){ 
     259    function lfMobileDownload($realpath,$sdown_filename) { 
    260260        //モバイル用ヘッダー出力 
    261261        $this->lfMobileHeader($realpath,$sdown_filename); 
     
    315315     * @param string $sdown_filename ダウンロード時の指定ファイル名 
    316316     */ 
    317     function lfDownload($realpath,$sdown_filename){ 
     317    function lfDownload($realpath,$sdown_filename) { 
    318318        // 拡張子を取得 
    319319        $extension = pathinfo($realpath, PATHINFO_EXTENSION); 
  • branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Favorite.php

    r21441 r21479  
    158158 
    159159    /* 仕方がない処理。。 */ 
    160     function lfMakeWhere ($tablename, $arrProductId) { 
     160    function lfMakeWhere($tablename, $arrProductId) { 
    161161 
    162162        // 取得した表示すべきIDだけを指定して情報を取得。 
  • branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Refusal.php

    r21441 r21479  
    9393     * @return void 
    9494     */ 
    95     function lfDeleteCustomer($customer_id){ 
     95    function lfDeleteCustomer($customer_id) { 
    9696        $objQuery = SC_Query_Ex::getSingletonInstance(); 
    9797 
Note: See TracChangeset for help on using the changeset viewer.