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

Conflicts:
	settings/personal.php
This commit is contained in:
Michael Gapczynski 2012-07-26 20:45:32 -04:00
parent 164fc1c981
commit 41a74e3dd2
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ OC_App::setActiveNavigationEntry( 'personal' );
// calculate the disc space
$rootInfo=OC_FileCache::get('');
$sharedInfo=OC_FileCache::get('/Shared');
if (!isset($sharedInfo)) {
if (!isset($sharedInfo['size'])) {
$sharedSize = 0;
} else {
$sharedSize = $sharedInfo['size'];
@ -67,4 +67,4 @@ foreach($forms as $form){
}
$tmpl->printPage();
?>
?>