diff options
author | Stephan Peijnik <speijnik@anexia-it.com> | 2014-07-11 10:36:28 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-08-19 13:55:35 +0200 |
commit | 2df52e54d712a148f91c0945d95ffac2dc78802a (patch) | |
tree | eef3f86f5c0cd508c6ac2d1489fd056abd4cf920 /lib/private/helper.php | |
parent | fdfc5c67f8e90ac0a439579e9a64d1a643686bd3 (diff) | |
download | nextcloud-server-2df52e54d712a148f91c0945d95ffac2dc78802a.tar.gz nextcloud-server-2df52e54d712a148f91c0945d95ffac2dc78802a.zip |
Fix STORAGE_* constants usage by moving those constants into \OC\Files\Filesystem.
As constants not defined within a class cannot be automatically found by the
autoloader moving those constants into a class makes them accessible to
code which uses them.
Signed-off-by: Stephan Peijnik <speijnik@anexia-it.com>
Diffstat (limited to 'lib/private/helper.php')
-rw-r--r-- | lib/private/helper.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/helper.php b/lib/private/helper.php index 79df2e3255c..840869e58c4 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -887,7 +887,7 @@ class OC_Helper { */ public static function freeSpace($dir) { $freeSpace = \OC\Files\Filesystem::free_space($dir); - if ($freeSpace !== \OC\Files\SPACE_UNKNOWN) { + if ($freeSpace !== \OC\Files\Filesystem::SPACE_UNKNOWN) { $freeSpace = max($freeSpace, 0); return $freeSpace; } else { @@ -960,7 +960,7 @@ class OC_Helper { } if ($includeExtStorage) { $quota = OC_Util::getUserQuota(\OCP\User::getUser()); - if ($quota !== \OC\Files\SPACE_UNLIMITED) { + if ($quota !== \OC\Files\Filesystem::SPACE_UNLIMITED) { // always get free space / total space from root + mount points $path = ''; return self::getGlobalStorageInfo(); |