Browse Source

[WebBundle] fixed unneeded overhead in the exception handler

Fabien Potencier 15 years ago
parent
commit
b4414bc3de
1 changed files with 1 additions and 1 deletions
  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)
     {