Commit c5f3b77c authored by gnoMii's avatar gnoMii Committed by Benjamin Eberlei

Fix if the port is empty

parent 938502f9
......@@ -37,7 +37,7 @@ class Driver implements \Doctrine\DBAL\Driver
if (isset($params['host']) && $params['host'] != '') {
$dsn .= 'host=' . $params['host'] . ' ';
}
if (isset($params['port'])) {
if (isset($params['port']) AND $params['port'] != '') {
$dsn .= 'port=' . $params['port'] . ' ';
}
if (isset($params['dbname'])) {
......@@ -67,4 +67,4 @@ class Driver implements \Doctrine\DBAL\Driver
$params = $conn->getParams();
return $params['dbname'];
}
}
\ No newline at end of file
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment