Parcourir la source

[WebBundle] fixed unneeded overhead in the exception handler

Fabien Potencier il y a 15 ans
Parent
commit
b4414bc3de

+ 1 - 1
src/Symfony/Framework/WebBundle/Listener/ExceptionHandler.php

@@ -71,7 +71,7 @@ class ExceptionHandler
 
     try
     {
-      $response = $event->getSubject()->handleRaw($request);
+      $response = $event->getSubject()->handleRaw($request, false);
     }
     catch (\Exception $e)
     {