Merge pull request #10323 from gekmihesg/master

Load authentication backends before tryBasicAuth
This commit is contained in:
blizzz 2014-08-13 16:08:48 +02:00
commit 54491e8c68

View File

@ -699,6 +699,9 @@ class OC {
if (!OC_User::isLoggedIn()) {
// Test it the user is already authenticated using Apaches AuthType Basic... very usable in combination with LDAP
if (!OC_Config::getValue('maintenance', false) && !self::checkUpgrade(false)) {
OC_App::loadApps(array('authentication'));
}
OC::tryBasicAuthLogin();
}