[HttpKernel] fixed signature

This commit is contained in:
Fabien Potencier 2010-05-19 16:35:12 +02:00
parent 6a3dcce31e
commit 3704b67cda
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ EOF;
*/
protected function filterResponse($response)
{
return new DomResponse($response->getContent(), $response->getStatusCode(), $response->headers, $response->getCookies());
return new DomResponse($response->getContent(), $response->getStatusCode(), $response->headers->all(), $response->getCookies());
}
/**