diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2015-12-18 11:42:09 +0100 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2015-12-18 11:53:41 +0100 |
commit | 6fb60815c581c333106e0fa4845eb25ad6a5223b (patch) | |
tree | abeec0139d55a72b1aee6194e9ebe11f8689c584 /lib/private/helper.php | |
parent | 0a09004d39b5d27124d59ed45debf109170b24d2 (diff) | |
download | nextcloud-server-6fb60815c581c333106e0fa4845eb25ad6a5223b.tar.gz nextcloud-server-6fb60815c581c333106e0fa4845eb25ad6a5223b.zip |
Use SystemConfig internally
Diffstat (limited to 'lib/private/helper.php')
-rw-r--r-- | lib/private/helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/helper.php b/lib/private/helper.php index 707f6cdccad..3a5326d218e 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -746,7 +746,7 @@ class OC_Helper { */ public static function getStorageInfo($path, $rootInfo = null) { // return storage info without adding mount points - $includeExtStorage = \OC::$config->getValue('quota_include_external_storage', false); + $includeExtStorage = \OC::$server->getSystemConfig()->getValue('quota_include_external_storage', false); if (!$rootInfo) { $rootInfo = \OC\Files\Filesystem::getFileInfo($path, false); |