From b9100d3a3f25e0726ce280cd4b4b14649cc1c1cf Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 28 Sep 2015 16:54:55 +0200 Subject: [PATCH] [WebProfileBundle] fix missing request var in the 'last 10' panel --- .../Bundle/WebProfilerBundle/Controller/ProfilerController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Symfony/Bundle/WebProfilerBundle/Controller/ProfilerController.php b/src/Symfony/Bundle/WebProfilerBundle/Controller/ProfilerController.php index 8b91441f9e..f9d882fee2 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/Controller/ProfilerController.php +++ b/src/Symfony/Bundle/WebProfilerBundle/Controller/ProfilerController.php @@ -303,6 +303,7 @@ class ProfilerController 'end' => $end, 'limit' => $limit, 'panel' => null, + 'request' => $request, )), 200, array('Content-Type' => 'text/html')); }