diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-08-15 20:37:50 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-08-15 21:09:13 +0200 |
commit | 6173c0fbc262f0d02c45d9cf4e81b020ad839145 (patch) | |
tree | 7c453e5dce300051efbcc3721eec4d7306c6000d /lib/util.php | |
parent | 2f1a06b2ee8b2022e71d8903fd5ce0ccf2f8c22f (diff) | |
download | nextcloud-server-6173c0fbc262f0d02c45d9cf4e81b020ad839145.tar.gz nextcloud-server-6173c0fbc262f0d02c45d9cf4e81b020ad839145.zip |
a bit of refactoring for oc_filesystem and implement user quota
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/util.php b/lib/util.php index 83d39b3dd21..0fdfa012305 100644 --- a/lib/util.php +++ b/lib/util.php @@ -74,6 +74,8 @@ class OC_Util { //jail the user into his "home" directory OC_Filesystem::chroot("/$user/$root"); + $quotaProxy=new OC_FileProxy_Quota(); + OC_FileProxy::register($quotaProxy); self::$fsSetup=true; } } |