Hi,
what kind of error is this? Where I have to look to find the error? What could be the cause of this?

Fatal error: Call to a member function get_id() on a non-object in /all/modules/print/dompdf-0.5.1/include/cellmap.cls.php on line 560

Comments

Frederic wbase’s picture

Hello

You can fix this by changing line 560 from cellmap.cls.php

from

unset($this->_frames[ $frame->get_id() ]);

to

if (is_object($frame)){
                        unset($this->_frames[ $frame->get_id() ]);
                } 
Apfel007’s picture

thanx

jcnventura’s picture

Status: Active » Closed (fixed)
djkentuckyham’s picture

Received a similar error and applied the same fix. So far? heh... so good
'Frame not found in cellmap' in /home/mysite/public_html/sites/all/modules/print/dompdf/include/cellmap.cls.php:224

Frederic wbase’s picture

Wich path did you aplied?