diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-12-05 23:25:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-05 23:25:41 +0100 |
commit | a89b033869db08f1ad3483a5ab3fe774e898fa0f (patch) | |
tree | d06b13562000428842d0cb1302fc60bfc46cb6e3 /lib/private/Setup/AbstractDatabase.php | |
parent | aac3024878dd97ead2b627b963dba6d7dffc049f (diff) | |
parent | 5365c1a32f396e1e699dea597d7656138f649573 (diff) | |
download | nextcloud-server-a89b033869db08f1ad3483a5ab3fe774e898fa0f.tar.gz nextcloud-server-a89b033869db08f1ad3483a5ab3fe774e898fa0f.zip |
Merge pull request #497 from nextcloud/postgres-setup-no-admin
handle postgres setup when we cant connect as admin
Diffstat (limited to 'lib/private/Setup/AbstractDatabase.php')
-rw-r--r-- | lib/private/Setup/AbstractDatabase.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/Setup/AbstractDatabase.php b/lib/private/Setup/AbstractDatabase.php index 2b9d7afb367..dbf46888ffe 100644 --- a/lib/private/Setup/AbstractDatabase.php +++ b/lib/private/Setup/AbstractDatabase.php @@ -114,6 +114,7 @@ abstract class AbstractDatabase { 'user' => $this->dbUser, 'password' => $this->dbPassword, 'tablePrefix' => $this->tablePrefix, + 'dbname' => $this->dbName ); // adding port support through installer |