Skip to content
Snippets Groups Projects
Commit d4bdcb7a authored by Lukas Reschke's avatar Lukas Reschke
Browse files

Merge pull request #9047 from owncloud/fix_preload_fundamental_apps

Load fundamental apps, before any possible customizing app may follow
parents 8d1cf791 7b704eeb
No related branches found
No related tags found
No related merge requests found
...@@ -696,6 +696,8 @@ class OC { ...@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment