diff --git a/src/Symfony/Bundle/FrameworkBundle/Controller/InternalController.php b/src/Symfony/Bundle/FrameworkBundle/Controller/InternalController.php index 3693f751bf..f4cff3a028 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Controller/InternalController.php +++ b/src/Symfony/Bundle/FrameworkBundle/Controller/InternalController.php @@ -42,6 +42,6 @@ class InternalController extends ContainerAware $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()); } }