From cb6d911eb4ec0b9718501a174a2730bed70836d8 Mon Sep 17 00:00:00 2001 From: Damien Alexandre Date: Sun, 30 Jan 2011 08:43:30 -0800 Subject: [PATCH] The ControlerResolver service as been moved in http_kernel --- .../Bundle/FrameworkBundle/Controller/InternalController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Controller/InternalController.php b/src/Symfony/Bundle/FrameworkBundle/Controller/InternalController.php index 3693f751bf964..f4cff3a028e3b 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Controller/InternalController.php +++ b/src/Symfony/Bundle/FrameworkBundle/Controller/InternalController.php @@ -42,6 +42,6 @@ public function indexAction($path, $controller) $attributes->add($tmp); } - return $this->container->get('controller_resolver')->forward($controller, $attributes->all(), $request->query->all()); + return $this->container->get('http_kernel')->forward($controller, $attributes->all(), $request->query->all()); } }