aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-09-26 13:34:47 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-09-26 13:34:47 +0200
commite515509a817d06e646a7781fc2456fde227d2154 (patch)
tree603046fc93eb5eaa205179155d6a77d6845310e0
parent6b1d70f148de8ce9d1fa7944a114823bf6decd35 (diff)
downloadnextcloud-server-e515509a817d06e646a7781fc2456fde227d2154.tar.gz
nextcloud-server-e515509a817d06e646a7781fc2456fde227d2154.zip
prelogin apps have to be loaded within setupBackend() otherwise required classes cannot be loaded
-rw-r--r--lib/user.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/user.php b/lib/user.php
index da774ff86f0..62c2f318ccc 100644
--- a/lib/user.php
+++ b/lib/user.php
@@ -177,6 +177,7 @@ class OC_User {
* setup the configured backends in config.php
*/
public static function setupBackends() {
+ OC_App::loadApps(array('prelogin'));
$backends = OC_Config::getValue('user_backends', array());
foreach ($backends as $i => $config) {
$class = $config['class'];