bug with <hr />
Status: Abandoned
Brought to you by:
renatoac
Here is how to solve a <hr /> bug...
file : html2fpdf.php
lines 718 to 720
replace :
if($attr['WIDTH'] != '') $hrwidth = ConvertSize($attr['WIDTH'],$this->pgwidth);
if($attr['ALIGN'] != '') $hralign = $align[strtolower($attr['ALIGN'])];
if($attr['COLOR'] != '') $hrcolor = ConvertColor($attr['COLOR']);
with :
if (isset($attr['WIDTH'])) if($attr['WIDTH'] != '') $hrwidth = ConvertSize($attr['WIDTH'],$this->pgwidth);
if (isset($attr['ALIGN'])) if($attr['ALIGN'] != '') $hralign = $align[strtolower($attr['ALIGN'])];
if (isset($attr['COLOR'])) if($attr['COLOR'] != '') $hrcolor = ConvertColor($attr['COLOR']);