fix a potential infinite loop when installing with sqlite
This commit is contained in:
parent
c948137f96
commit
5ccce7e45f
|
@ -116,6 +116,8 @@ class OC_SETUP {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
//delete the old sqlite database first, might cause infinte loops otherwise
|
||||||
|
unlink("$datadir/owncloud.db");
|
||||||
//in case of sqlite, we can always fill the database
|
//in case of sqlite, we can always fill the database
|
||||||
OC_DB::createDbFromStructure('db_structure.xml');
|
OC_DB::createDbFromStructure('db_structure.xml');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue