From 39d17fe30dea72d5dd1ffe51a4ecccf83fa2e9eb Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Mon, 2 Sep 2013 17:12:30 +0200 Subject: [PATCH] create BaseAdminController --- core/lib/Thelia/Config/Resources/routing/install.xml | 3 +-- core/lib/Thelia/Controller/Install/InstallController.php | 5 ++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/core/lib/Thelia/Config/Resources/routing/install.xml b/core/lib/Thelia/Config/Resources/routing/install.xml index 8e0357fe0..fb5c25bcc 100644 --- a/core/lib/Thelia/Config/Resources/routing/install.xml +++ b/core/lib/Thelia/Config/Resources/routing/install.xml @@ -5,8 +5,7 @@ xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd"> - Thelia\Controller\Front\DefaultController::noAction - index + Thelia\Controller\Install\InstallController::index diff --git a/core/lib/Thelia/Controller/Install/InstallController.php b/core/lib/Thelia/Controller/Install/InstallController.php index 1906d25ae..1d20bc9d6 100644 --- a/core/lib/Thelia/Controller/Install/InstallController.php +++ b/core/lib/Thelia/Controller/Install/InstallController.php @@ -22,14 +22,13 @@ /*************************************************************************************/ namespace Thelia\Controller\Install; -use Thelia\Controller\BaseController; - +use Thelia\Install\BaseInstall; /** * Class InstallController * @package Thelia\Controller\Install * @author Manuel Raynaud */ -class InstallController extends BaseController { +class InstallController extends BaseInstallController { } \ No newline at end of file