From: Krzysztof Sikorski Date: Wed, 29 May 2013 23:53:16 +0000 (+0300) Subject: bugfix: DB_PORT was not used in one of db_connect calls X-Git-Tag: 1.8~44^2^2 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=50d5645b9f77b5341ade0026f99076f82692a9b7;p=tt-rss.git bugfix: DB_PORT was not used in one of db_connect calls --- diff --git a/install/index.php b/install/index.php index 06f13fe1..ec064c0a 100644 --- a/install/index.php +++ b/install/index.php @@ -406,7 +406,7 @@ } else if ($op == 'installschema' || $op == 'skipschema') { - $link = db_connect($DB_HOST, $DB_USER, $DB_PASS, $DB_NAME, $DB_TYPE); + $link = db_connect($DB_HOST, $DB_USER, $DB_PASS, $DB_NAME, $DB_TYPE, $DB_PORT); if (!$link) { print_error("Unable to connect to database using specified parameters.");