[-] BO : you do not need to add the admin controller in the core, the override directory is enough

This commit is contained in:
dMetzger
2012-07-09 12:56:51 +00:00
parent 17b7202954
commit f3a871ffee
+1 -1
View File
@@ -305,7 +305,7 @@ class DispatcherCore
}
else
{
$controllers = Dispatcher::getControllers(array(_PS_ADMIN_DIR_.'/tabs/', _PS_ADMIN_CONTROLLER_DIR_));
$controllers = Dispatcher::getControllers(array(_PS_ADMIN_DIR_.'/tabs/', _PS_ADMIN_CONTROLLER_DIR_, _PS_OVERRIDE_DIR_.'controllers/admin/'));
if (!isset($controllers[$this->controller]))
$this->controller = $this->controller_not_found;
$controller_class = $controllers[$this->controller];