Skip to content
Snippets Groups Projects
Commit 2922e74b authored by Laurent's avatar Laurent
Browse files

Fix InspectorGadget unserialization

parent 31b625ef
Branches
Tags
No related merge requests found
......@@ -120,7 +120,7 @@ class ZendAfi_Controller_Plugin_InspectorGadget extends Zend_Controller_Plugin_A
},
$this->_calls);
foreach($this->_calls as $call)
foreach(array_filter($this->_calls, 'is_object') as $call)
$html .= '<li>' . $call->render() . '</li>';
return $html . '</ol></div>';
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment