From fa77f088937bd74b852248c2bc1d8744ea81799e Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 8 Oct 2010 10:17:47 +0200 Subject: [PATCH] fixed typo --- .../Resources/skeleton/bundle/Controller/DefaultController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/bundle/Controller/DefaultController.php b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/bundle/Controller/DefaultController.php index ad507ecfa6..6cd4a93271 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/bundle/Controller/DefaultController.php +++ b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/bundle/Controller/DefaultController.php @@ -8,6 +8,6 @@ class DefaultController extends Controller { public function indexAction() { - return $this->render('{{ bundle }}:Default:index'); + return $this->render('{{ bundle }}:Default:index.php'); } }