diff options
author | Klaus Weidenbach <Klaus.Weidenbach@gmx.net> | 2018-01-18 23:46:49 +0100 |
---|---|---|
committer | Klaus Weidenbach <Klaus.Weidenbach@gmx.net> | 2018-01-18 23:46:49 +0100 |
commit | 8a60bb461913c59cd65bfaa28c3d40af32a59304 (patch) | |
tree | be56e3411b2804b9a9dd4c5478636e8e5860eed1 /include/dba | |
parent | a0e1a8e0a20df640ef951dee4fb3c6ed19faee03 (diff) | |
download | volse-hubzilla-8a60bb461913c59cd65bfaa28c3d40af32a59304.tar.gz volse-hubzilla-8a60bb461913c59cd65bfaa28c3d40af32a59304.tar.bz2 volse-hubzilla-8a60bb461913c59cd65bfaa28c3d40af32a59304.zip |
Change dsn port handling in dba_pdo.
Diffstat (limited to 'include/dba')
-rwxr-xr-x | include/dba/dba_pdo.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dba/dba_pdo.php b/include/dba/dba_pdo.php index f119d8926..7b58561a7 100755 --- a/include/dba/dba_pdo.php +++ b/include/dba/dba_pdo.php @@ -15,7 +15,7 @@ class dba_pdo extends dba_driver { $dsn = $server; } else { - $dsn = $this->driver_dbtype . ':host=' . $server . (intval($port) ? '' : ';port=' . $port); + $dsn = $this->driver_dbtype . ':host=' . $server . (intval($port) ? ';port=' . $port : ''); } $dsn .= ';dbname=' . $db; @@ -154,4 +154,4 @@ class dba_pdo extends dba_driver { return 'pdo'; } -}
\ No newline at end of file +} |