summaryrefslogtreecommitdiffstats
path: root/lib/private/user.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/user.php')
-rw-r--r--lib/private/user.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/private/user.php b/lib/private/user.php
index 86b1385f15d..7c839e6a4c8 100644
--- a/lib/private/user.php
+++ b/lib/private/user.php
@@ -287,8 +287,16 @@ class OC_User {
self::setUserId($uid);
self::setDisplayName($uid);
self::getUserSession()->setLoginName($uid);
-
+ // setup the filesystem
+ OC_Util::setupFS($uid);
+ // first call the post_login hooks, the login-process needs to be
+ // completed before we can safely create the users folder.
+ // For example encryption needs to initialize the users keys first
+ // before we can create the user folder with the skeleton files
OC_Hook::emit("OC_User", "post_login", array("uid" => $uid, 'password' => ''));
+ //trigger creation of user home and /files folder
+ \OC::$server->getUserFolder($uid);
+
}
return true;
}