summaryrefslogtreecommitdiffstats
path: root/lib/filesystem.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2013-02-11 11:06:09 +0100
committerRobin Appelman <icewind@owncloud.com>2013-02-11 11:06:09 +0100
commitad360296b940c20b57da9316b079497e0c1c1256 (patch)
tree3ee6625215099b265a5c2bfbfee1a4ee523616a4 /lib/filesystem.php
parentd7d9e2a15a4039d6fbb272a63b17ee9cbd01bf51 (diff)
downloadnextcloud-server-ad360296b940c20b57da9316b079497e0c1c1256.tar.gz
nextcloud-server-ad360296b940c20b57da9316b079497e0c1c1256.zip
Update tests and apps to the new \OC\Files\Filesystem::init signature
Diffstat (limited to 'lib/filesystem.php')
-rw-r--r--lib/filesystem.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/filesystem.php b/lib/filesystem.php
index 57cca902303..e86bea6bff9 100644
--- a/lib/filesystem.php
+++ b/lib/filesystem.php
@@ -58,8 +58,8 @@ class OC_Filesystem {
/**
* @deprecated OC_Filesystem is replaced by \OC\Files\Filesystem
*/
- static public function init($root) {
- return \OC\Files\Filesystem::init($root);
+ static public function init($user, $root) {
+ return \OC\Files\Filesystem::init($user, $root);
}
/**