diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-06 23:29:43 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-06 23:29:43 +0100 |
commit | a143e77ee4b1326e10e035c15d7c77e218b4b90c (patch) | |
tree | ec1b425dd13149a9e0b4b70c0dfa7e6d27d4fa3e /lib | |
parent | 4a345fd91143296790f79a92f9449a680bebb277 (diff) | |
download | nextcloud-server-a143e77ee4b1326e10e035c15d7c77e218b4b90c.tar.gz nextcloud-server-a143e77ee4b1326e10e035c15d7c77e218b4b90c.zip |
removing unused parameter $parameters
fixing undefined variable $useDir
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ocs/cloud.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ocs/cloud.php b/lib/ocs/cloud.php index 21095ec91e9..da77756822e 100644 --- a/lib/ocs/cloud.php +++ b/lib/ocs/cloud.php @@ -24,7 +24,7 @@ class OC_OCS_Cloud { - public static function getSystemWebApps($parameters) { + public static function getSystemWebApps() { OC_Util::checkLoggedIn(); $apps = OC_App::getEnabledApps(); $values = array(); @@ -45,7 +45,7 @@ class OC_OCS_Cloud { if(OC_User::userExists($parameters['user'])) { // calculate the disc space $userDir = '/'.$parameters['user'].'/files'; - OC_Filesystem::init($useDir); + OC_Filesystem::init($userDir); $rootInfo = OC_FileCache::get(''); $sharedInfo = OC_FileCache::get('/Shared'); $used = $rootInfo['size'] - $sharedInfo['size']; |