From 6c9a1d184258ff56e242f867dd5569e7b38574af Mon Sep 17 00:00:00 2001 From: Roly Rudy Gutierrez Pinto Date: Tue, 8 Aug 2017 13:45:12 -0400 Subject: [PATCH] HOR-3627 --- gulliver/system/class.dbMaintenance.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulliver/system/class.dbMaintenance.php b/gulliver/system/class.dbMaintenance.php index 8251a57f8..c61de7110 100644 --- a/gulliver/system/class.dbMaintenance.php +++ b/gulliver/system/class.dbMaintenance.php @@ -415,7 +415,7 @@ class DataBaseMaintenance $dbPort = $aHost[1]; $command = 'mysqldump' . ' --user=' . $this->user - . ' --password=' . $password + . ' --password=' . $password . ' --host=' . $dbHost . ' --port=' . $dbPort . ' --opt' @@ -428,7 +428,7 @@ class DataBaseMaintenance . ' --user=' . $this->user . ' --opt' . ' --skip-comments' - . ' --password=' . $password + . ' --password=' . $password . ' ' . $this->dbName . ' > ' . $outfile; }