Don't specify host when using a socket.
This commit is contained in:
parent
0932760304
commit
73062040e6
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue