mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-12-07 14:00:59 +01:00
update installer mysqli_connect to only use port if defined
This commit is contained in:
parent
df25e4d221
commit
92c9a20cf5
@ -112,7 +112,10 @@
|
||||
|
||||
} else if ($type == "mysql") {
|
||||
if (function_exists("mysqli_connect")) {
|
||||
return mysqli_connect($host, $user, $pass, $db, $port);
|
||||
if ($port)
|
||||
return mysqli_connect($host, $user, $pass, $db, $port);
|
||||
else
|
||||
return mysqli_connect($host, $user, $pass, $db);
|
||||
|
||||
} else {
|
||||
$link = mysql_connect($host, $user, $pass);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user