Merge pull request #9047 from owncloud/fix_preload_fundamental_apps
Load fundamental apps, before any possible customizing app may follow
This commit is contained in:
commit
d4bdcb7a9b
|
@ -696,6 +696,8 @@ class OC {
|
||||||
if (!self::$CLI and (!isset($_GET["logout"]) or ($_GET["logout"] !== 'true'))) {
|
if (!self::$CLI and (!isset($_GET["logout"]) or ($_GET["logout"] !== 'true'))) {
|
||||||
try {
|
try {
|
||||||
if (!OC_Config::getValue('maintenance', false) && !self::needUpgrade()) {
|
if (!OC_Config::getValue('maintenance', false) && !self::needUpgrade()) {
|
||||||
|
OC_App::loadApps(array('authentication'));
|
||||||
|
OC_App::loadApps(array('filesystem', 'logging'));
|
||||||
OC_App::loadApps();
|
OC_App::loadApps();
|
||||||
}
|
}
|
||||||
self::checkSingleUserMode();
|
self::checkSingleUserMode();
|
||||||
|
|
Loading…
Reference in New Issue