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/mysql.php | |
parent | e93ce26f27fa8c2c364696a7a7ce5122eb4a91e2 (diff) | |
download | nextcloud-server-60eb63e35ade1ef53e907a637d746d93ed906feb.tar.gz nextcloud-server-60eb63e35ade1ef53e907a637d746d93ed906feb.zip |
Fix review items
Diffstat (limited to 'lib/setup/mysql.php')
-rw-r--r-- | lib/setup/mysql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/setup/mysql.php b/lib/setup/mysql.php index 1ab1b6ea8ae..0cf04fde5a1 100644 --- a/lib/setup/mysql.php +++ b/lib/setup/mysql.php @@ -52,7 +52,7 @@ class MySQL extends AbstractDatabase { $row=mysql_fetch_row($result); } if(!$result or $row[0]==0) { - \OC_DB::createDbFromStructure('db_structure.xml'); + \OC_DB::createDbFromStructure($this->dbDefinitionFile); } mysql_close($connection); } |