diff options
author | Tom Needham <tom@owncloud.com> | 2013-05-01 18:26:02 +0100 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-08-27 15:39:47 +0200 |
commit | 273f162b26b15b2238972001a4ada3fa52eeece9 (patch) | |
tree | e3b85d9a32b2c5cfeeb36672df2a021a7cb59f39 /lib/ocs | |
parent | f14ce1efdc2a8b9656bd485055dea706936c585d (diff) | |
download | nextcloud-server-273f162b26b15b2238972001a4ada3fa52eeece9.tar.gz nextcloud-server-273f162b26b15b2238972001a4ada3fa52eeece9.zip |
Code style
Diffstat (limited to 'lib/ocs')
-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 1535f70a8cc..b64200d0916 100644 --- a/lib/ocs/cloud.php +++ b/lib/ocs/cloud.php @@ -47,9 +47,9 @@ class OC_OCS_Cloud { /** * gets user info */ - public static function getUser($parameters){ + public static function getUser($parameters) { // Check if they are viewing information on themselves - if($parameters['userid'] === OC_User::getUser()){ + if($parameters['userid'] === OC_User::getUser()) { // Self lookup $quota = array(); $storage = OC_Helper::getStorageInfo(); |