From c18a07eb5c2538520cb433d521c58902d42b5f5e Mon Sep 17 00:00:00 2001 From: Maddy Chellathurai <mchellathura@magento.com> Date: Wed, 30 Mar 2016 15:24:27 -0500 Subject: [PATCH] MAGETWO-51371: Wrong message in CLI output for installation - changing way string append is done. --- setup/src/Magento/Setup/Model/Installer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/src/Magento/Setup/Model/Installer.php b/setup/src/Magento/Setup/Model/Installer.php index 43a2c3a8362..3cce200fbe2 100644 --- a/setup/src/Magento/Setup/Model/Installer.php +++ b/setup/src/Magento/Setup/Model/Installer.php @@ -824,7 +824,7 @@ class Installer $this->log->log("Module '{$moduleName}':"); $modulePostUpdater = $this->getSchemaDataHandler($moduleName, $handlerType); if ($modulePostUpdater) { - $this->log->logInline('Running ' + str_replace('-', ' ', $handlerType) + '...'); + $this->log->logInline('Running ' . str_replace('-', ' ', $handlerType) . '...'); $modulePostUpdater->install($setup, $moduleContextList[$moduleName]); } $this->logProgress(); -- GitLab