]> source.dussan.org Git - nextcloud-server.git/commitdiff
prelogin apps have to be loaded within setupBackend() otherwise required classes...
authorThomas Müller <thomas.mueller@tmit.eu>
Thu, 26 Sep 2013 11:34:47 +0000 (13:34 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Thu, 26 Sep 2013 11:34:47 +0000 (13:34 +0200)
lib/user.php

index da774ff86f0bf7e6e7e6ba4dea8eb1834c6a7c36..62c2f318ccccf5ff9dd78b7483f0b933643b169e 100644 (file)
@@ -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'];