Merge pull request #24964 from owncloud/issue-24961-public-upload-unlimited

Allow public upload when the quota is unlimited
remotes/origin/master
Vincent Petry 10 years ago
commit 2867d7a0f8
  1. 2
      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

Loading…
Cancel
Save