From 980b45f372c91ccdfdf0fd85235a2688332274f1 Mon Sep 17 00:00:00 2001 From: Vincent Augagneur Date: Wed, 29 May 2013 17:46:27 +0200 Subject: [PATCH] //small addons module install fix --- install-dev/controllers/http/process.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-dev/controllers/http/process.php b/install-dev/controllers/http/process.php index f9d98996f..865318ca4 100644 --- a/install-dev/controllers/http/process.php +++ b/install-dev/controllers/http/process.php @@ -241,7 +241,7 @@ class InstallControllerHttpProcess extends InstallControllerHttp public function processInstallAddonsModules() { $this->initializeContext(); - if ($module = Tools::getValue('module') && $id_module = Tools::getValue('id_module')) + if (($module = Tools::getValue('module')) && $id_module = Tools::getValue('id_module')) $result = $this->model_install->installModulesAddons(array('name' => $module, 'id_module' => $id_module)); else $result = $this->model_install->installModulesAddons();