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

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/SC_Fpdf.php

    r21514 r21515  
    107107        $this->lfText(125, 63, $arrInfo['law_url'], 8);          //URL 
    108108        $this->lfText(125, 68, $arrInfo['law_company'], 8);        //会社名 
    109         $text = '〒 '.$arrInfo['law_zip01']." - ".$arrInfo['law_zip02']; 
     109        $text = '〒 '.$arrInfo['law_zip01'].' - '.$arrInfo['law_zip02']; 
    110110        $this->lfText(125, 71, $text, 8);  //郵便番号 
    111111        $text = $this->arrPref[$arrInfo['law_pref']].$arrInfo['law_addr01']; 
     
    113113        $this->lfText(125, 77, $arrInfo['law_addr02'], 8);          //住所2 
    114114 
    115         $text = 'TEL: '.$arrInfo['law_tel01']."-".$arrInfo['law_tel02']."-".$arrInfo['law_tel03']; 
     115        $text = 'TEL: '.$arrInfo['law_tel01'].'-'.$arrInfo['law_tel02'].'-'.$arrInfo['law_tel03']; 
    116116        //FAX番号が存在する場合、表示する 
    117117        if (strlen($arrInfo['law_fax01']) > 0) { 
    118             $text .= ' FAX: '.$arrInfo['law_fax01']."-".$arrInfo['law_fax02']."-".$arrInfo['law_fax03']; 
     118            $text .= ' FAX: '.$arrInfo['law_fax01'].'-'.$arrInfo['law_fax02'].'-'.$arrInfo['law_fax03']; 
    119119        } 
    120120        $this->lfText(125, 80, $text, 8);  //TEL・FAX 
     
    135135        $this->lfText(27, 74, $this->arrData['msg2'], 8);  //メッセージ2 
    136136        $this->lfText(27, 78, $this->arrData['msg3'], 8);  //メッセージ3 
    137         $text = '作成日: '.$this->arrData['year']."年".$this->arrData['month']."月".$this->arrData['day']."日"; 
     137        $text = '作成日: '.$this->arrData['year'].'年'.$this->arrData['month'].'月'.$this->arrData['day'].'日'; 
    138138        $this->lfText(158, 288, $text, 8);  //作成日 
    139139    } 
     
    144144 
    145145        // 購入者情報 
    146         $text = '〒 '.$this->arrDisp['order_zip01']." - ".$this->arrDisp['order_zip02']; 
     146        $text = '〒 '.$this->arrDisp['order_zip01'].' - '.$this->arrDisp['order_zip02']; 
    147147        $this->lfText(23, 43, $text, 10); //購入者郵便番号 
    148148        $text = $this->arrPref[$this->arrDisp['order_pref']] . $this->arrDisp['order_addr01']; 
    149149        $this->lfText(27, 47, $text, 10); //購入者都道府県+住所1 
    150150        $this->lfText(27, 51, $this->arrDisp['order_addr02'], 10); //購入者住所2 
    151         $text = $this->arrDisp['order_name01'].' '.$this->arrDisp['order_name02']." 様"; 
     151        $text = $this->arrDisp['order_name01'].' '.$this->arrDisp['order_name02'].' 様'; 
    152152        $this->lfText(27, 59, $text, 11); //購入者氏名 
    153153 
     
    189189                    $arrOrder[$i][0] .= ' ]'; 
    190190                } else { 
    191                     $arrOrder[$i][0] .= $this->lfConvSjis(' * '.$this->arrDisp['classcategory_name2'][$i]." ]"); 
     191                    $arrOrder[$i][0] .= $this->lfConvSjis(' * '.$this->arrDisp['classcategory_name2'][$i].' ]'); 
    192192                } 
    193193            } 
     
    271271        if ($this->pdf_download == 1) { 
    272272            if ($this->PageNo() == 1) { 
    273                 $filename = 'nouhinsyo-No'.$this->arrData['order_id'].".pdf"; 
     273                $filename = 'nouhinsyo-No'.$this->arrData['order_id'].'.pdf'; 
    274274            } else { 
    275275                $filename = 'nouhinsyo.pdf'; 
Note: See TracChangeset for help on using the changeset viewer.