bug #15973 [WebProfileBundle] fix missing request var in the 'last 10' panel (fabpot)

This PR was merged into the 2.8 branch.

Discussion
----------

[WebProfileBundle] fix missing request var in the 'last 10' panel

| Q             | A
| ------------- | ---
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | n/a
| License       | MIT
| Doc PR        | n/a

Commits
-------

b9100d3 [WebProfileBundle] fix missing request var in the 'last 10' panel
This commit is contained in:
Tobias Schultze 2015-09-28 17:36:55 +02:00
commit 3c19ae066c

View File

@ -303,6 +303,7 @@ class ProfilerController
'end' => $end,
'limit' => $limit,
'panel' => null,
'request' => $request,
)), 200, array('Content-Type' => 'text/html'));
}