Menu

#61 Notice: Undefined index: wrapper in /home/share/www/tmp/html

open
nobody
None
5
2008-06-11
2008-06-11
HM2K
No

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']))

Discussion


Log in to post a comment.

MongoDB Logo MongoDB