Changeset 475
- Timestamp:
- 05/12/08 14:04:28 (8 months ago)
- Files:
-
- 1 modified
-
trunk/app/views/helpers/fpdf.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/helpers/fpdf.php
r474 r475 1 1 <?php 2 2 /** 3 * Chipotle Software TM 4 * Manuel Montoya 2002-20085 * GPLv3 manuel<arroba>mononeurona<punto>org3 * Chipotle Software TM 2002-2008 4 * @author: Manuel Montoya manuel<arroba>mononeurona<punto>org 5 * @license: GPLv3 6 6 */ 7 7 App::import('Vendor', 'fpdf/myfpdf'); … … 26 26 public function setData($data) 27 27 { 28 $string = utf8_decode($data); 28 $string = utf8_decode($data); // UTF-8 29 29 $this->pdf->Cell(0,5,$string,1,1,'L'); 30 30 $this->pdf->Ln(5);
