From b4414bc3debe1e9a5255934be885530e1673ffff Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 23 Feb 2010 13:57:43 +0100 Subject: [PATCH] [WebBundle] fixed unneeded overhead in the exception handler --- src/Symfony/Framework/WebBundle/Listener/ExceptionHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Framework/WebBundle/Listener/ExceptionHandler.php b/src/Symfony/Framework/WebBundle/Listener/ExceptionHandler.php index aaae4c3899..828ae0dec4 100644 --- a/src/Symfony/Framework/WebBundle/Listener/ExceptionHandler.php +++ b/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) {