PMCORE-3663 [27018] No translation on the left bar on the Home Tab - France

This commit is contained in:
Roly Gutierrez
2022-02-17 12:46:44 -04:00
parent 75f714d3ae
commit fa5ea92c68
3 changed files with 19 additions and 11 deletions

View File

@@ -7,8 +7,8 @@ function cliListIds($command, $args)
$workspaces = get_workspaces_from_args($command);
foreach ($workspaces as $index => $workspace) {
$hostPort1 = explode(":", $workspace->dbInfo['DB_HOST']);
$hostPort = $hostPort1[0] . (isset($hostPort[1]) ? ";port=" . $hostPort[1] : "");
$hostPort = explode(":", $workspace->dbInfo['DB_HOST']);
$hostPort = $hostPort[0] . (isset($hostPort[1]) ? ";port=" . $hostPort[1] : "");
$connectionString = sprintf(
"%s:host=%s;dbname=%s",
$workspace->dbInfo['DB_ADAPTER'],