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:
authorBart Visscher <bartv@thisnet.nl>2012-09-04 10:18:28 +0400
committerBart Visscher <bartv@thisnet.nl>2012-09-04 23:27:36 +0400
commit41f135daeeff8ddb6914be786ebf4b90272b15b6 (patch)
tree009c870148be457191e35503144963737828854c /lib/request.php
parentae8d2d029f2cb44b4932a9c33b667dbc918904ae (diff)
Remove () from return statement
Diffstat (limited to 'lib/request.php')
-rw-r--r--lib/request.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/request.php b/lib/request.php
index 3fe61fbddcd..10f6e91bac8 100644
--- a/lib/request.php
+++ b/lib/request.php
@@ -49,7 +49,7 @@ class OC_Request {
$proto = 'http';
}
}
- return($proto);
+ return $proto;
}
/**