diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2015-01-22 19:16:28 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2015-01-22 19:16:28 +0100 |
commit | 9c7cd702c3b3476648a58b8c7653d842da616e7a (patch) | |
tree | db6c7fd4ca50762951547babc407930711774183 /apps | |
parent | fc1865449d30f78e55e2830555a92bf4e8c1dfcd (diff) | |
download | nextcloud-server-9c7cd702c3b3476648a58b8c7653d842da616e7a.tar.gz nextcloud-server-9c7cd702c3b3476648a58b8c7653d842da616e7a.zip |
user fs must be setup up, so that the real user folder is mounted on the username based path
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_encryption/lib/migration.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_encryption/lib/migration.php b/apps/files_encryption/lib/migration.php index 38bedbb5824..cf5552f84ac 100644 --- a/apps/files_encryption/lib/migration.php +++ b/apps/files_encryption/lib/migration.php @@ -74,6 +74,7 @@ class Migration { public function reorganizeFolderStructureForUser($user) { // backup all keys + \OC_Util::setupFS($user); if ($this->backupUserKeys($user)) { // create new 'key' folder $this->view->mkdir($user . '/files_encryption/keys'); |