diff options
author | nikrou <nikrou@piwigo.org> | 2010-02-28 21:11:23 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-02-28 21:11:23 +0000 |
commit | 0c8e06da4aa4f0dc306e099c9709a04415e4dfb2 (patch) | |
tree | 6e22288599e45018a324392796b245e09ff40089 /include/dblayer/functions_pgsql.inc.php | |
parent | 4c209bf180f3ab7775b71c00eaf780b8aab38fa5 (diff) |
Feature 1255 : bug in install with mysql and postgresql if some form parameters are missing.
git-svn-id: http://piwigo.org/svn/trunk@5006 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/dblayer/functions_pgsql.inc.php')
-rw-r--r-- | include/dblayer/functions_pgsql.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dblayer/functions_pgsql.inc.php b/include/dblayer/functions_pgsql.inc.php index 5337b4aa5..fc86af083 100644 --- a/include/dblayer/functions_pgsql.inc.php +++ b/include/dblayer/functions_pgsql.inc.php @@ -49,7 +49,7 @@ function pwg_db_connect($host, $user, $password, $database) $user, $password, $database); - $link = pg_connect($connection_string) or my_error('pg_connect', true); + $link = pg_connect($connection_string) or my_error('pg_connect', false); return $link; } |