]> source.dussan.org Git - nextcloud-server.git/commitdiff
improve comment
authorMorris Jobke <morris.jobke@gmail.com>
Fri, 14 Jun 2013 08:28:33 +0000 (11:28 +0300)
committerMorris Jobke <morris.jobke@gmail.com>
Fri, 14 Jun 2013 08:28:33 +0000 (11:28 +0300)
lib/setup.php

index d7ceb36ae95e61bf65b28b2f0d55e3a150dee420..1cbc83eed9a30d7ac7bc9a9bfbd4ae876b422c69 100644 (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);