diff --git a/src/Symfony/Bundle/WebProfilerBundle/EventListener/WebDebugToolbarListener.php b/src/Symfony/Bundle/WebProfilerBundle/EventListener/WebDebugToolbarListener.php index d8dc7936ccc4..55eb6e088dd8 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/EventListener/WebDebugToolbarListener.php +++ b/src/Symfony/Bundle/WebProfilerBundle/EventListener/WebDebugToolbarListener.php @@ -113,8 +113,8 @@ protected function injectToolbar(Response $response) 'WebProfilerBundle:Profiler:toolbar_js.html.twig', array( 'position' => $this->position, - 'token' => $response->headers->get('X-Debug-Token') - )) + 'token' => $response->headers->get('X-Debug-Token'), + ) ))."\n"; $content = $substrFunction($content, 0, $pos).$toolbar.$substrFunction($content, $pos); $response->setContent($content);