diff options
| author | Krzysztof Sikorski <krzysztof.sikorski@zerozero.pl> | 2013-05-30 02:53:16 +0300 |
|---|---|---|
| committer | Krzysztof Sikorski <krzysztof.sikorski@zerozero.pl> | 2013-05-30 02:53:16 +0300 |
| commit | 50d5645b9f77b5341ade0026f99076f82692a9b7 (patch) | |
| tree | 66c842ee60709a092782f1b4cd7c9f250f51eccc /install/index.php | |
| parent | 37f00f7fcc4ad076c1a54ad890d6b86edd2185d8 (diff) | |
bugfix: DB_PORT was not used in one of db_connect calls
Diffstat (limited to 'install/index.php')
| -rw-r--r-- | install/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/index.php b/install/index.php index 06f13fe14..ec064c0a7 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."); |