diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-01-28 19:36:21 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-01-28 19:36:21 +0100 |
commit | 3bafa87a1223d18e7f772c9551f17aaf7bcc7abb (patch) | |
tree | 30c0b4ee3ba330ebed4effa332b946c61e6d418e /lib/filesystemview.php | |
parent | feb65c89f2780220bb560a8f63c7dc6ac94602b0 (diff) | |
parent | 06c1c35ac90f7920afa637ab0b628529b4135d40 (diff) | |
download | nextcloud-server-3bafa87a1223d18e7f772c9551f17aaf7bcc7abb.tar.gz nextcloud-server-3bafa87a1223d18e7f772c9551f17aaf7bcc7abb.zip |
merge styles
Diffstat (limited to 'lib/filesystemview.php')
-rw-r--r-- | lib/filesystemview.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/filesystemview.php b/lib/filesystemview.php index ea9cbecee0e..1fc8e83d68f 100644 --- a/lib/filesystemview.php +++ b/lib/filesystemview.php @@ -36,8 +36,12 @@ * * Filesystem functions are not called directly; they are passed to the correct * OC_Filestorage object + * + * @note default root (if $root is empty or '/') is /data/[user]/ + * @note If you don't include a leading slash, you may encounter problems. + * e.g. use $v = new \OC_FilesystemView( '/' . $params['uid'] ); not + * $v = new \OC_FilesystemView( $params['uid'] ); */ - class OC_FilesystemView { private $fakeRoot=''; private $internal_path_cache=array(); |