From a72d2eec38091a3b1116ec7a5e28afe5eefd3ef6 Mon Sep 17 00:00:00 2001 From: tDidierjean Date: Thu, 29 Dec 2011 14:34:37 +0000 Subject: [PATCH] // Fix modules install in new installer git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11889 b9a71923-0436-4b27-9f14-aed3839534dd --- install-new/models/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-new/models/install.php b/install-new/models/install.php index c05c3293c..f252947e2 100644 --- a/install-new/models/install.php +++ b/install-new/models/install.php @@ -526,7 +526,7 @@ class InstallModelInstall extends InstallAbstractModel $errors = array(); foreach ($modules as $module_name) { - if (!file_exists(_PS_MODULE_DIR_.$module_name)) + if (!file_exists(_PS_MODULE_DIR_.$module_name.'/'.$module_name.'.php')) continue; $module = Module::getInstanceByName($module_name);