diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-06-27 20:19:51 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-06-29 21:15:06 +0200 |
commit | 60eb63e35ade1ef53e907a637d746d93ed906feb (patch) | |
tree | 112a8a51ca70c424f773939b94bb787a433bb603 /lib/setup/postgresql.php | |
parent | e93ce26f27fa8c2c364696a7a7ce5122eb4a91e2 (diff) | |
download | nextcloud-server-60eb63e35ade1ef53e907a637d746d93ed906feb.tar.gz nextcloud-server-60eb63e35ade1ef53e907a637d746d93ed906feb.zip |
Fix review items
Diffstat (limited to 'lib/setup/postgresql.php')
-rw-r--r-- | lib/setup/postgresql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/setup/postgresql.php b/lib/setup/postgresql.php index d5b135a9577..49fcbf0326e 100644 --- a/lib/setup/postgresql.php +++ b/lib/setup/postgresql.php @@ -75,7 +75,7 @@ class PostgreSQL extends AbstractDatabase { $row = pg_fetch_row($result); } if(!$result or $row[0]==0) { - \OC_DB::createDbFromStructure('db_structure.xml'); + \OC_DB::createDbFromStructure($this->dbDefinitionFile); } } |