Merge pull request #24410 from owncloud/fix_24182

first call the post_login hooks, before we call getUserFolder.
This commit is contained in:
Björn Schießle 2016-05-04 10:23:38 +02:00
commit 61be98f554
1 changed files with 5 additions and 2 deletions

View File

@ -212,10 +212,13 @@ class OC_User {
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);
OC_Hook::emit("OC_User", "post_login", array("uid" => $uid, 'password' => ''));
}
return true;
}