Skip to content

Commit

Permalink
Fix debug bar for php 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lmarcouiller committed Jul 27, 2021
1 parent 079b014 commit 7836651
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/includes/symfony/var-dumper/Cloner/VarCloner.php
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ private static function initHashMask()
if (!empty($frame['line'])) {
ob_start();
debug_zval_dump($obj);
self::$hashMask = substr(ob_get_clean(), 17);
self::$hashMask = strlen(substr(ob_get_clean(), 17));
}
}

Expand Down

0 comments on commit 7836651

Please sign in to comment.