Check if size isset, try to fix used space calculation again, fixs bug oc-1331

This commit is contained in:
Michael Gapczynski 2012-07-26 20:45:32 -04:00
parent 0a9c33e151
commit d1dee28437
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ OC_App::setActiveNavigationEntry( 'personal' );
// calculate the disc space // calculate the disc space
$rootInfo=OC_FileCache::get(''); $rootInfo=OC_FileCache::get('');
$sharedInfo=OC_FileCache::get('/Shared'); $sharedInfo=OC_FileCache::get('/Shared');
if (!isset($sharedInfo)) { if (!isset($sharedInfo['size'])) {
$sharedSize = 0; $sharedSize = 0;
} else { } else {
$sharedSize = $sharedInfo['size']; $sharedSize = $sharedInfo['size'];