Merge pull request #3073 from owncloud/setup-error-message

Improve error message if user creation fails during setup
This commit is contained in:
Bernhard Posselt 2013-04-22 13:28:18 -07:00
commit 4af4a5bd98

View File

@ -187,6 +187,7 @@ class OC_Setup {
unlink("$datadir/owncloud.db");
}
//in case of sqlite, we can always fill the database
error_log("creating sqlite db");
OC_DB::createDbFromStructure('db_structure.xml');
}
@ -195,7 +196,7 @@ class OC_Setup {
OC_User::createUser($username, $password);
}
catch(Exception $exception) {
$error[] = $exception->getMessage();
$error[] = 'Error while trying to create admin user: ' . $exception->getMessage();
}
if(count($error) == 0) {