Try to fix recursion issues in PHP5.2.

This commit is contained in:
mark_story 2012-08-08 22:42:44 -04:00
parent dca050fbd6
commit c94a684be8

View file

@ -542,7 +542,7 @@ class Debugger {
if ($depth >= 0) {
foreach ($var as $key => $val) {
if ($val !== $var) {
if ($val != $var) {
$val = self::_export($val, $depth, $indent);
} else {
$val = '[recursion]';