Skip to content

Commit

Permalink
bug #36838 [HttpKernel] Bring back the debug toolbar (derrabus)
Browse files Browse the repository at this point in the history
This PR was merged into the 4.4 branch.

Discussion
----------

[HttpKernel] Bring back the debug toolbar

| Q             | A
| ------------- | ---
| Branch?       | 4.4
| Bug fix?      | yes
| New feature?  | no
| Deprecations? | no
| Tickets       | Fix #36836
| License       | MIT
| Doc PR        | N/A

This PR effectively reverts #36789 in order to fix a regression caused by that PR.

Commits
-------

9f8d225 Revert "Change priority of KernelEvents::RESPONSE subscriber"
  • Loading branch information
fabpot committed May 18, 2020
2 parents 94e8c42 + 9f8d225 commit 87c6683
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -119,7 +119,7 @@ public function onKernelTerminate(PostResponseEvent $event)
public static function getSubscribedEvents()
{
return [
KernelEvents::RESPONSE => ['onKernelResponse', -1012],
KernelEvents::RESPONSE => ['onKernelResponse', -100],
KernelEvents::EXCEPTION => ['onKernelException', 0],
KernelEvents::TERMINATE => ['onKernelTerminate', -1024],
];
Expand Down

0 comments on commit 87c6683

Please sign in to comment.