summaryrefslogtreecommitdiffstats
path: root/lib/private/files.php
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2013-11-18 17:29:30 +0100
committerVincent Petry <pvince81@owncloud.com>2013-11-18 18:09:01 +0100
commit614e4d485c8b74f6879c401f8cbb93e9335bf9b3 (patch)
tree7b30c6fe4da0b984525aec5e938e40cf6406a059 /lib/private/files.php
parent44c2f9aad2b475303b3bebb39f38954cb3210751 (diff)
downloadnextcloud-server-614e4d485c8b74f6879c401f8cbb93e9335bf9b3.tar.gz
nextcloud-server-614e4d485c8b74f6879c401f8cbb93e9335bf9b3.zip
External storage space is now not counted in total space
Added argument to getFileInfo() to disable adding the size of mountpoints to a directory's size. Fixes #5924
Diffstat (limited to 'lib/private/files.php')
-rw-r--r--lib/private/files.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/files.php b/lib/private/files.php
index c705d2adb1a..8b4d5c59aee 100644
--- a/lib/private/files.php
+++ b/lib/private/files.php
@@ -28,8 +28,8 @@
class OC_Files {
static $tmpFiles = array();
- static public function getFileInfo($path){
- return \OC\Files\Filesystem::getFileInfo($path);
+ static public function getFileInfo($path, $includeMountPoints = true){
+ return \OC\Files\Filesystem::getFileInfo($path, $includeMountPoints);
}
static public function getDirectoryContent($path){