diff options
author | scambra <sergio@entrecables.com> | 2012-07-06 12:22:21 +0200 |
---|---|---|
committer | virtual <virtual@o-hal.entrecables.com> | 2012-09-19 21:31:29 +0200 |
commit | 2b5133a1c443512dcf87d59cc84425bc8400df84 (patch) | |
tree | d266aed4e690fdd4393e42431984d43320926dde /apps/files | |
parent | 518ca0ac58c7cf762d0fc51f75cc886cedd495b0 (diff) | |
download | nextcloud-server-2b5133a1c443512dcf87d59cc84425bc8400df84.tar.gz nextcloud-server-2b5133a1c443512dcf87d59cc84425bc8400df84.zip |
check free space using folder's owner
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/ajax/upload.php | 2 | ||||
-rw-r--r-- | apps/files/index.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index fb3e277a215..f9c4f4c870c 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -38,7 +38,7 @@ $totalSize=0; foreach($files['size'] as $size) { $totalSize+=$size; } -if($totalSize>OC_Filesystem::free_space('/')) { +if($totalSize>OC_Filesystem::free_space($dir)){ OCP\JSON::error(array("data" => array( "message" => "Not enough space available" ))); exit(); } diff --git a/apps/files/index.php b/apps/files/index.php index 493087d26f1..d85740d4095 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -85,7 +85,7 @@ $upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize') $post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size')); $maxUploadFilesize = min($upload_max_filesize, $post_max_size); -$freeSpace=OC_Filesystem::free_space('/'); +$freeSpace=OC_Filesystem::free_space($dir); $freeSpace=max($freeSpace,0); $maxUploadFilesize = min($maxUploadFilesize ,$freeSpace); |