mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
don't add the "Shared"-directory size to users quota
This commit is contained in:
parent
9d0cfacd67
commit
ca41f2e96a
1 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue