Rename variable to indicate that it can be port and socket.

This commit is contained in:
Andreas Fischer 2014-06-12 20:18:38 +02:00
parent 3d8eabedbd
commit 0932760304
1 changed files with 4 additions and 4 deletions

View File

@ -76,11 +76,11 @@ class OC_DB {
$host = OC_Config::getValue('dbhost', '');
if (strpos($host, ':')) {
// Host variable may carry a port or socket.
list($host, $socket) = explode(':', $host, 2);
if (ctype_digit($socket)) {
$connectionParams['port'] = $socket;
list($host, $portOrSocket) = explode(':', $host, 2);
if (ctype_digit($portOrSocket)) {
$connectionParams['port'] = $portOrSocket;
} else {
$connectionParams['unix_socket'] = $socket;
$connectionParams['unix_socket'] = $portOrSocket;
}
}
$connectionParams['host'] = $host;