1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 19:05:55 +00:00

fix typo in db_connect()

This commit is contained in:
Andrew Dolgov
2005-09-14 14:36:14 +01:00
parent 6b3bce8abb
commit 6effd45248

3
db.php
View File

@@ -8,8 +8,7 @@ function db_connect($host, $user, $pass, $db) {
$string = "dbname=$db user=$user password=$pass";
if ($host) {
$stripng .= "host=$host";
$string .= "host=$host";
}
return pg_connect($string);