From e66bc7f4f8ea2e31d7b944360dd68873b68bdbc0 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 --- 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);