summaryrefslogtreecommitdiffstats
path: root/settings/personal.php
diff options
context:
space:
mode:
Diffstat (limited to 'settings/personal.php')
-rw-r--r--settings/personal.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/personal.php b/settings/personal.php
index 9297f5d91cc..54002d87c59 100644
--- a/settings/personal.php
+++ b/settings/personal.php
@@ -25,7 +25,7 @@ if (!isset($sharedInfo['size'])) {
}
$used=$rootInfo['size']-$sharedSize;
if($used<0) $used=0;
-$free=OC_Filesystem::free_space();
+$free=\OC\Files\Filesystem::free_space();
$total=$free+$used;
if($total==0) $total=1; // prevent division by zero
$relative=round(($used/$total)*10000)/100;