diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-10-28 15:13:29 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-10-28 15:13:29 +0100 |
commit | 2974d4d3809c75eb3f69474b892fbc12fbe691c9 (patch) | |
tree | 654727c3c1d0b18155142c7f05c204a58fed6d25 /lib/private/files/filesystem.php | |
parent | 3f63f4b6b13a358e13a0c5ebd2f85b918b8c410f (diff) | |
download | nextcloud-server-2974d4d3809c75eb3f69474b892fbc12fbe691c9.tar.gz nextcloud-server-2974d4d3809c75eb3f69474b892fbc12fbe691c9.zip |
Reset the users setup after clearing mounts
Diffstat (limited to 'lib/private/files/filesystem.php')
-rw-r--r-- | lib/private/files/filesystem.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/files/filesystem.php b/lib/private/files/filesystem.php index 51a241a4e33..c7dc99c55cb 100644 --- a/lib/private/files/filesystem.php +++ b/lib/private/files/filesystem.php @@ -431,6 +431,7 @@ class Filesystem { */ public static function clearMounts() { if (self::$mounts) { + self::$usersSetup = array(); self::$mounts->clear(); } } |