]> source.dussan.org Git - nextcloud-server.git/commitdiff
Remove unused spaces
authoreduardo <eduardo@vnexu.net>
Wed, 8 Jan 2014 02:16:37 +0000 (00:16 -0200)
committereduardo <eduardo@vnexu.net>
Wed, 8 Jan 2014 02:16:37 +0000 (00:16 -0200)
lib/private/setup/postgresql.php

index 6065cee80c853434da98ff705e72143a9a7c24a8..4d0c9b52a4dfcdd552f4b0784b689e2f85e29c46 100644 (file)
@@ -23,7 +23,7 @@ class PostgreSQL extends AbstractDatabase {
                if(!$connection) {
                        // Try if we can connect to the DB with the specified name
                        $e_dbname = addslashes($this->dbname);
-                       $connection_string = "host='$e_host' dbname='$e_dbname' user='$e_user' port='$port'  password='$e_password'";
+                       $connection_string = "host='$e_host' dbname='$e_dbname' user='$e_user' port='$port' password='$e_password'";
                        $connection = @pg_connect($connection_string);
 
                        if(!$connection)
@@ -77,7 +77,7 @@ class PostgreSQL extends AbstractDatabase {
                        $port=false;
                }
 
-               $connection_string = "host='$e_host' dbname='$e_dbname' user='$e_user' port='$port'  password='$e_password'";
+               $connection_string = "host='$e_host' dbname='$e_dbname' user='$e_user' port='$port' password='$e_password'";
                $connection = @pg_connect($connection_string);
                if(!$connection) {
                        throw new \DatabaseSetupException($this->trans->t('PostgreSQL username and/or password not valid'),