Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Needham <tom@owncloud.com>2013-05-01 21:26:02 +0400
committerMorris Jobke <morris.jobke@gmail.com>2013-08-27 17:39:47 +0400
commit273f162b26b15b2238972001a4ada3fa52eeece9 (patch)
treee3b85d9a32b2c5cfeeb36672df2a021a7cb59f39
parentf14ce1efdc2a8b9656bd485055dea706936c585d (diff)
Code style
-rw-r--r--lib/ocs/cloud.php4
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();