diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2012-07-09 16:51:16 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2012-07-09 16:51:16 +0200 |
commit | e59a1806cf676dad9256ad3adb83a6e9530b7612 (patch) | |
tree | a702cd86c7b5708ace23ab87911691d33caa972d /settings/personal.php | |
parent | b67199bb452483ec7d3c3d338b2f3a0c667e42e7 (diff) | |
download | nextcloud-server-e59a1806cf676dad9256ad3adb83a6e9530b7612.tar.gz nextcloud-server-e59a1806cf676dad9256ad3adb83a6e9530b7612.zip |
remove superfluous ?> at the end of .php files (left out apps/*/templates)
Diffstat (limited to 'settings/personal.php')
-rw-r--r-- | settings/personal.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/settings/personal.php b/settings/personal.php index 26a9f601d9a..d82db0d0e7e 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -17,7 +17,7 @@ OC_App::setActiveNavigationEntry( 'personal' ); // calculate the disc space $rootInfo=OC_FileCache::get(''); -$sharedInfo=OC_FileCache::get('/Shared');
+$sharedInfo=OC_FileCache::get('/Shared'); $used=$rootInfo['size']-$sharedInfo['size']; $free=OC_Filesystem::free_space(); $total=$free+$used; @@ -61,5 +61,3 @@ foreach($forms as $form){ $tmpl->append('forms',$form); } $tmpl->printPage(); - -?> |