Skip to content

Commit a01fc83

Browse files
committed
Fix mistake (recursion)
PHP Fatal error: Maximum function nesting level of '250' reached, aborting! in Bridge\Twig\TraceableTwigTemplate.php on line 78
1 parent f1dd126 commit a01fc83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DebugBar/Bridge/Twig/TraceableTwigTemplate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function displayParentBlock($name, array $context, array $blocks = array(
7575
*/
7676
public function displayBlock($name, array $context, array $blocks = array())
7777
{
78-
$this->displayBlock($name, $context, $blocks);
78+
$this->template->displayBlock($name, $context, $blocks);
7979
}
8080

8181
/**

0 commit comments

Comments
 (0)