From a288535347ec2a65d0355b46685f754834b7a981 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 25 Nov 2014 16:03:06 +0100 Subject: [PATCH] Use the `host' and `port' directives when using a zend adapter in DbTool fixes #7781 fixes #7798 --- modules/setup/library/Setup/Utils/DbTool.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/setup/library/Setup/Utils/DbTool.php b/modules/setup/library/Setup/Utils/DbTool.php index 344b98d8a..37d0673b1 100644 --- a/modules/setup/library/Setup/Utils/DbTool.php +++ b/modules/setup/library/Setup/Utils/DbTool.php @@ -246,6 +246,8 @@ class DbTool $config = array( 'dbname' => $dbname, + 'host' => $this->config['host'], + 'port' => $this->config['port'], 'username' => $this->config['username'], 'password' => $this->config['password'] );