diff options
Diffstat (limited to 'settings')
-rw-r--r-- | settings/personal.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/settings/personal.php b/settings/personal.php index 64e08be89eb..26a9f601d9a 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -17,7 +17,8 @@ OC_App::setActiveNavigationEntry( 'personal' ); // calculate the disc space $rootInfo=OC_FileCache::get(''); -$used=$rootInfo['size']; +$sharedInfo=OC_FileCache::get('/Shared');
+$used=$rootInfo['size']-$sharedInfo['size']; $free=OC_Filesystem::free_space(); $total=$free+$used; if($total==0) $total=1; // prevent division by zero |