diff options
author | Florin Peter <github@florin-peter.de> | 2013-05-07 22:19:48 +0200 |
---|---|---|
committer | Florin Peter <github@florin-peter.de> | 2013-05-07 22:26:16 +0200 |
commit | 03d8907df8e3d109f12b8d9b88e6597022dd6981 (patch) | |
tree | 9031a60b20cdcb0171f9a84ff7594f9426a1d2cb /lib/util.php | |
parent | 175633d380e2073ce2f17108701df2b65e3c7e75 (diff) | |
download | nextcloud-server-03d8907df8e3d109f12b8d9b88e6597022dd6981.tar.gz nextcloud-server-03d8907df8e3d109f12b8d9b88e6597022dd6981.zip |
fix for tearDownFS, after filesystem::tearDown() the root is not mounted
Diffstat (limited to 'lib/util.php')
-rwxr-xr-x | lib/util.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/util.php b/lib/util.php index 79509b1c3b2..f30cdf6a534 100755 --- a/lib/util.php +++ b/lib/util.php @@ -67,6 +67,7 @@ class OC_Util { public static function tearDownFS() { \OC\Files\Filesystem::tearDown(); self::$fsSetup=false; + self::$rootMounted=false; } /** |