improve comment

This commit is contained in:
Morris Jobke 2013-06-14 11:28:33 +03:00
parent e33f68ecb6
commit 7093b0829f
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ class OC_Setup {
$connection_string = "host='$e_host' dbname=postgres user='$e_user' password='$e_password'";
$connection = @pg_connect($connection_string);
if(!$connection) {
// Try if we can't connect with the specified DB name
// Try if we can connect to the DB with the specified name
$e_dbname = addslashes($dbname);
$connection_string = "host='$e_host' dbname='$e_dbname' user='$e_user' password='$e_password'";
$connection = @pg_connect($connection_string);