Changeset 756 for trunk/app/views/helpers
- Timestamp:
- 09/04/08 19:34:27 (3 months ago)
- Files:
-
- 1 modified
-
trunk/app/views/helpers/fpdf.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/helpers/fpdf.php
r476 r756 21 21 { 22 22 $this->pdf = new myFPDF($orientation, $unit, $format); 23 $this->pdf->SetFont('Arial','B',1 4);23 $this->pdf->SetFont('Arial','B',10); 24 24 } 25 25 … … 27 27 { 28 28 $string = utf8_decode($data); // UTF-8 29 $this->pdf->Cell(0, 5,$string,1,1,'L');30 $this->pdf->Ln( 5);29 $this->pdf->Cell(0,2,$string,0,1,'L'); 30 $this->pdf->Ln(2); 31 31 } 32 32
