summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2014-04-02 17:10:57 +0200
committerRobin Appelman <icewind@owncloud.com>2014-04-02 17:10:57 +0200
commitda5541ac025e5f5f9dbd7318b903266eedbed263 (patch)
tree124d77443579674234f9d48d86268d0f5205cbc6 /apps
parent16d10844cd01dc89f864cda6bde5169812e89b62 (diff)
downloadnextcloud-server-da5541ac025e5f5f9dbd7318b903266eedbed263.tar.gz
nextcloud-server-da5541ac025e5f5f9dbd7318b903266eedbed263.zip
Allow reusing FileInfo for getStorageInfo
Diffstat (limited to 'apps')
-rw-r--r--apps/files/index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/index.php b/apps/files/index.php
index 4d765b69e41..f2c5bd13359 100644
--- a/apps/files/index.php
+++ b/apps/files/index.php
@@ -38,7 +38,7 @@ OCP\App::setActiveNavigationEntry('files_index');
// Load the files
$dir = isset($_GET['dir']) ? stripslashes($_GET['dir']) : '';
$dir = \OC\Files\Filesystem::normalizePath($dir);
-$dirInfo = \OC\Files\Filesystem::getFileInfo($dir);
+$dirInfo = \OC\Files\Filesystem::getFileInfo($dir, false);
// Redirect if directory does not exist
if (!$dirInfo || !$dirInfo->getType() === 'dir') {
header('Location: ' . OCP\Util::getScriptName() . '');
@@ -94,7 +94,7 @@ $breadcrumbNav->assign('baseURL', OCP\Util::linkTo('files', 'index.php') . '?dir
$permissions = $dirInfo->getPermissions();
// information about storage capacities
-$storageInfo=OC_Helper::getStorageInfo($dir);
+$storageInfo=OC_Helper::getStorageInfo($dir, $dirInfo);
$freeSpace=$storageInfo['free'];
$uploadLimit=OCP\Util::uploadLimit();
$maxUploadFilesize=OCP\Util::maxUploadFilesize($dir);