From 5089e1e9902157bc741078c912e277ef0e206b63 Mon Sep 17 00:00:00 2001 From: mMarinetti Date: Mon, 31 Oct 2011 10:41:32 +0000 Subject: [PATCH] // added default not found controller --- admin-dev/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin-dev/index.php b/admin-dev/index.php index 6430feb7e..b34f0ba31 100644 --- a/admin-dev/index.php +++ b/admin-dev/index.php @@ -39,6 +39,6 @@ if (!isset($_REQUEST['controller']) && isset($_REQUEST['tab'])) // Prepare and trigger admin dispatcher Dispatcher::getInstance()->setDefaultController('adminhome'); -Dispatcher::getInstance()->setControllerNotFound('adminhome'); +Dispatcher::getInstance()->setControllerNotFound('adminnotfound'); Dispatcher::getInstance()->setControllerDirectories(array(_PS_ADMIN_DIR_.'/tabs/', _PS_ADMIN_CONTROLLER_DIR_)); Dispatcher::getInstance()->dispatch();