diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-10-16 12:26:26 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-10-16 12:26:26 +0200 |
commit | c71deea0d53e4dfe6b17cb5d28ddd695b7ee3e67 (patch) | |
tree | 6dd1daa5f43946b36ac71ce9056112d65763eff0 /apps/files_trashbin | |
parent | 756f64d728ccb9ef9bc6ba2ca965064827003231 (diff) | |
download | nextcloud-server-c71deea0d53e4dfe6b17cb5d28ddd695b7ee3e67.tar.gz nextcloud-server-c71deea0d53e4dfe6b17cb5d28ddd695b7ee3e67.zip |
Fix SPACE_UNKNOWN constant
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r-- | apps/files_trashbin/lib/trashbin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/lib/trashbin.php b/apps/files_trashbin/lib/trashbin.php index 73bb87955c7..63962296416 100644 --- a/apps/files_trashbin/lib/trashbin.php +++ b/apps/files_trashbin/lib/trashbin.php @@ -745,7 +745,7 @@ class Trashbin { if ($quota === null || $quota === 'none') { $quota = \OC\Files\Filesystem::free_space('/'); $softQuota = false; - if ($quota === \OC\Files\SPACE_UNKNOWN) { + if ($quota === \OCP\Files\FileInfo::SPACE_UNKNOWN) { $quota = 0; } } else { |