Merged in bugfix/PMCORE-3242 (pull request #8065)
PMCORE-3242 Approved-by: Julio Cesar Laura Avendaño
This commit is contained in:
committed by
Julio Cesar Laura Avendaño
commit
fcee460fd9
@@ -83,9 +83,11 @@ class DbConnections
|
|||||||
|
|
||||||
$result->next();
|
$result->next();
|
||||||
}
|
}
|
||||||
if (! in_array($row[2], $types)) {
|
if (isset($row[2])) {
|
||||||
|
if (!in_array($row[2], $types)) {
|
||||||
$types[] = $row[2];
|
$types[] = $row[2];
|
||||||
}
|
}
|
||||||
|
}
|
||||||
$this->connections = $connections;
|
$this->connections = $connections;
|
||||||
return $connections;
|
return $connections;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user