¿pusiste los valores de $find y $repl?
Código PHP:
Ver originalfunction Row($data)
{
$find = array('Á', 'É', 'Í', 'Ó', 'Ú', 'Ñ','ü', 'á', 'é', 'í', 'ó', 'ú', 'ñ','ü','"'); $repl = array('a', 'e', 'i', 'o', 'u', 'n', 'u', 'á', 'é', 'í', 'ó', 'ú', 'ñ', 'u','');
$this->SetX($this->TableX);
$ci=$this->ColorIndex;
$fill=!empty($this->RowColors[$ci]); if($fill)
$this->SetFillColor($this->RowColors[$ci][0],$this->RowColors[$ci][1],$this->RowColors[$ci][2]);
foreach($this->aCols as $col)
$this->Cell($col['w'],5,$txt,1,0,$col['a'],$fill);
$this->Ln();
$this->ColorIndex=1-$ci;
}