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

Allow public upload when the quota is unlimited
This commit is contained in:
Vincent Petry 2016-06-06 11:28:52 +02:00
commit 2867d7a0f8

View file

@ -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