fix a potential infinite loop when installing with sqlite

remotes/origin/stable
Robin Appelman 15 years ago
parent c948137f96
commit 5ccce7e45f
  1. 2
      lib/setup.php

@ -116,6 +116,8 @@ class OC_SETUP {
}
}
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
OC_DB::createDbFromStructure('db_structure.xml');
}

Loading…
Cancel
Save