summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2016-06-02 15:27:16 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2016-06-02 15:27:16 +0200
commit5c8e0596e6cdea2d6407e2b21358bebf3bf16194 (patch)
tree156040b70dcc54674bcab6212bc375b8705ba168 /apps
parent1ab7ee5e231b85ffdb24c284e57cebdd030b8a3d (diff)
downloadnextcloud-server-5c8e0596e6cdea2d6407e2b21358bebf3bf16194.tar.gz
nextcloud-server-5c8e0596e6cdea2d6407e2b21358bebf3bf16194.zip
Allow public upload when the quota is unlimited
Diffstat (limited to 'apps')
-rw-r--r--apps/files_sharing/lib/Controllers/ShareController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/Controllers/ShareController.php b/apps/files_sharing/lib/Controllers/ShareController.php
index d6f497ed38e..96c0a0ca556 100644
--- a/apps/files_sharing/lib/Controllers/ShareController.php
+++ b/apps/files_sharing/lib/Controllers/ShareController.php
@@ -321,7 +321,7 @@ class ShareController extends Controller {
* The OC_Util methods require a view. This just uses the node API
*/
$freeSpace = $share->getNode()->getStorage()->free_space($share->getNode()->getInternalPath());
- if ($freeSpace !== \OCP\Files\FileInfo::SPACE_UNKNOWN) {
+ if ($freeSpace < \OCP\Files\FileInfo::SPACE_UNLIMITED) {
$freeSpace = max($freeSpace, 0);
} else {
$freeSpace = (INF > 0) ? INF: PHP_INT_MAX; // work around https://bugs.php.net/bug.php?id=69188