Notice: Undefined index: wrapper in /home/share/www/tmp/html
Status: Abandoned
Brought to you by:
renatoac
Notice: Undefined index: wrapper in /home/share/www/tmp/html2fpdf/html2fpdf.php on line 805
You should try working to error_reporting(E_ALL);
You should check that variables are set using isset() before you use them.
elseif (isset($attr['ID']) && isset($this->CSS[$attr['ID']])) $properties = $this->CSS[$attr['ID']];
Also, unrelated... a few lines above you see this...
if( isset($attr['ALIGN']) and $attr['ALIGN'] != '' )
That can be written like this:
if (isset($attr['ALIGN']) && !empty($attr['ALIGN']))