Explorar el Código

[WebBundle] fixed unneeded overhead in the exception handler

Fabien Potencier hace 15 años
padre
commit
b4414bc3de
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/Symfony/Framework/WebBundle/Listener/ExceptionHandler.php

+ 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)
     {