mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-09-06 11:32:40 +00:00
Try to fix recursion issues in PHP5.2.
This commit is contained in:
parent
dca050fbd6
commit
c94a684be8
1 changed files with 1 additions and 1 deletions
|
@ -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]';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue