This commit is contained in:
Roly Rudy Gutierrez Pinto
2019-01-11 10:08:45 -04:00
parent 3696005d0d
commit 553d6293a9
2 changed files with 10 additions and 14 deletions

View File

@@ -194,7 +194,7 @@ class DbConnections
$conf = Propel::getConfiguration();
// Iterate through the datasources of configuration, and only care about workflow, rbac or rp. Remove anything else.
foreach ($conf['datasources'] as $key => $val) {
if (!in_array($key, ['workflow', 'rbac', 'rp'])) {
if (!in_array($key, ['workflow', 'rbac', 'rp', 'dbarray'])) {
unset($conf['datasources'][$key]);
}
}