Ignore:
Timestamp:
2013/01/16 10:35:19 (11 years ago)
Author:
undertree
Message:

#2018 (帳票出力の備考にひらがな・カタカナを入力すると改行コードが文字化けします)

・特定のコードと\nが並ぶと、改行が行われない問題への対処

File:
1 edited

Legend:

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

    r22218 r22250  
    269269        $this->MultiCell(0, 6, '< 備考 >', 'T', 2, 'L', 0, ''); 
    270270        $this->SetFont('SJIS', '', 8); 
    271         $text = SC_Utils_Ex::rtrim($this->arrData['etc1'] . "\n" . $this->arrData['etc2'] . "\n" . $this->arrData['etc3']); 
     271        $text = SC_Utils_Ex::rtrim($this->arrData['etc1'] . " \n" . $this->arrData['etc2'] . " \n" . $this->arrData['etc3']); 
    272272        $this->MultiCell(0, 4, $text, '', 2, 'L', 0, ''); 
    273273    } 
Note: See TracChangeset for help on using the changeset viewer.