diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-01-16 09:25:57 -0800 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-01-16 09:25:57 -0800 |
commit | 1d57a2e2a9d5e392bb1061479543cd1dec860c4b (patch) | |
tree | c0a4b2c32975ec45c5d7ec371f1a4dfcb7caab0b /lib/ocs/cloud.php | |
parent | cb0fd30458c29db7667582b7c182b4d530366634 (diff) | |
parent | 5bfe4adbaa9c402db5bd0d0f74fd9ad7bb037129 (diff) | |
download | nextcloud-server-1d57a2e2a9d5e392bb1061479543cd1dec860c4b.tar.gz nextcloud-server-1d57a2e2a9d5e392bb1061479543cd1dec860c4b.zip |
Merge pull request #1180 from owncloud/whitespace-cleanup
Whitespace cleanup
Diffstat (limited to 'lib/ocs/cloud.php')
-rw-r--r-- | lib/ocs/cloud.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ocs/cloud.php b/lib/ocs/cloud.php index faafe9a62dd..2d18b1db3f2 100644 --- a/lib/ocs/cloud.php +++ b/lib/ocs/cloud.php @@ -37,7 +37,7 @@ class OC_OCS_Cloud { } return new OC_OCS_Result($values); } - + public static function getUserQuota($parameters) { $user = OC_User::getUser(); if(OC_User::isAdminUser($user) or ($user==$parameters['user'])) { @@ -68,7 +68,7 @@ class OC_OCS_Cloud { return new OC_OCS_Result(null, 300); } } - + public static function getUserPublickey($parameters) { if(OC_User::userExists($parameters['user'])) { @@ -79,7 +79,7 @@ class OC_OCS_Cloud { return new OC_OCS_Result(null, 300); } } - + public static function getUserPrivatekey($parameters) { $user = OC_User::getUser(); if(OC_User::isAdminUser($user) or ($user==$parameters['user'])) { |