Don't specify host when using a socket.

This commit is contained in:
Andreas Fischer 2014-06-12 20:22:45 +02:00
parent 0932760304
commit 73062040e6
1 changed files with 1 additions and 1 deletions

View File

@ -78,12 +78,12 @@ class OC_DB {
// Host variable may carry a port or socket.
list($host, $portOrSocket) = explode(':', $host, 2);
if (ctype_digit($portOrSocket)) {
$connectionParams['host'] = $host;
$connectionParams['port'] = $portOrSocket;
} else {
$connectionParams['unix_socket'] = $portOrSocket;
}
}
$connectionParams['host'] = $host;
$connectionParams['dbname'] = $name;
}