diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-02-06 11:34:27 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-02-06 11:34:27 +0100 |
commit | 79fc4f312604feb20f96378d052703ec4768ecad (patch) | |
tree | 437ddedcff43e5656e9899bc66aa9e6d1e49c293 /lib/private/user.php | |
parent | 0db5fead8e9d4cfe410841ab4c4562987f2844a6 (diff) | |
download | nextcloud-server-79fc4f312604feb20f96378d052703ec4768ecad.tar.gz nextcloud-server-79fc4f312604feb20f96378d052703ec4768ecad.zip |
Within OC:init() the minimum set of apps is loaded - which is filesystem, authentication and logging
Diffstat (limited to 'lib/private/user.php')
-rw-r--r-- | lib/private/user.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/private/user.php b/lib/private/user.php index 98ebebbe5c1..11f96aabf74 100644 --- a/lib/private/user.php +++ b/lib/private/user.php @@ -317,8 +317,6 @@ class OC_User { */ public static function isLoggedIn() { if (\OC::$session->get('user_id') && self::$incognitoMode === false) { - OC_App::loadApps(array('authentication')); - self::setupBackends(); return self::userExists(\OC::$session->get('user_id')); } return false; |