[WebBundle] fixed unneeded overhead in the exception handler

This commit is contained in:
Fabien Potencier 2010-02-23 13:57:43 +01:00
parent a80a61b5c2
commit b4414bc3de
1 changed files with 1 additions and 1 deletions

View File

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