diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-09-04 08:18:28 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-09-04 21:27:36 +0200 |
commit | 41f135daeeff8ddb6914be786ebf4b90272b15b6 (patch) | |
tree | 009c870148be457191e35503144963737828854c | |
parent | ae8d2d029f2cb44b4932a9c33b667dbc918904ae (diff) | |
download | nextcloud-server-41f135daeeff8ddb6914be786ebf4b90272b15b6.tar.gz nextcloud-server-41f135daeeff8ddb6914be786ebf4b90272b15b6.zip |
Remove () from return statement
-rw-r--r-- | lib/request.php | 2 |
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; } /** |