Show
Ignore:
Timestamp:
05/12/08 14:02:03 (8 months ago)
Author:
aarkerio
Message:

Improved helper

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/helpers/fpdf.php

    r456 r474  
    11<?php  
    2  
     2/** 
     3*    Chipotle Software TM 
     4*    Manuel Montoya 2002-2008 
     5*    GPLv3 manuel<arroba>mononeurona<punto>org 
     6*/ 
    37App::import('Vendor', 'fpdf/myfpdf'); 
    48 
     
    2226  public function setData($data) 
    2327  { 
    24     $this->pdf->Cell(0,10,$data,1,1,'L'); 
    25     $this->pdf->Ln(10); 
     28    $string  =  utf8_decode($data); 
     29    $this->pdf->Cell(0,5,$string,1,1,'L'); 
     30    $this->pdf->Ln(5); 
    2631  } 
    2732