mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-29 20:11:29 +00:00
optional DB_PORT, misc js cleanups
This commit is contained in:
6
db.php
6
db.php
@@ -5,12 +5,16 @@ require_once "config.php";
|
||||
function db_connect($host, $user, $pass, $db) {
|
||||
if (DB_TYPE == "pgsql") {
|
||||
|
||||
$string = "dbname=$db user=$user password=$pass";
|
||||
$string = "dbname=$db user=$user password=$pass";
|
||||
|
||||
if ($host) {
|
||||
$string .= " host=$host";
|
||||
}
|
||||
|
||||
if (defined('DB_PORT')) {
|
||||
$string = "$string port=" . DB_PORT;
|
||||
}
|
||||
|
||||
$link = pg_connect($string);
|
||||
|
||||
if (!$link) {
|
||||
|
||||
Reference in New Issue
Block a user