diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-12-14 23:38:38 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-12-15 00:43:46 +0100 |
commit | 2ef2dc4ddabc8b5d86d7a9a5a936ecf3901615cc (patch) | |
tree | cab9483141ee8fee237abfdf9550117c1e98296f /lib/request.php | |
parent | 85bd28c5081e7c2fea236c4528c23be283aa7350 (diff) | |
download | nextcloud-server-2ef2dc4ddabc8b5d86d7a9a5a936ecf3901615cc.tar.gz nextcloud-server-2ef2dc4ddabc8b5d86d7a9a5a936ecf3901615cc.zip |
Fix "There must be a single space between the closing parenthesis and the opening brace"
Diffstat (limited to 'lib/request.php')
-rwxr-xr-x | lib/request.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/request.php b/lib/request.php index 782ed26a415..99a77e1b59e 100755 --- a/lib/request.php +++ b/lib/request.php @@ -18,7 +18,7 @@ class OC_Request { if(OC::$CLI) { return 'localhost'; } - if(OC_Config::getValue('overwritehost', '')<>''){ + if(OC_Config::getValue('overwritehost', '')<>'') { return OC_Config::getValue('overwritehost'); } if (isset($_SERVER['HTTP_X_FORWARDED_HOST'])) { @@ -43,7 +43,7 @@ class OC_Request { * Returns the server protocol. It respects reverse proxy servers and load balancers */ public static function serverProtocol() { - if(OC_Config::getValue('overwriteprotocol', '')<>''){ + if(OC_Config::getValue('overwriteprotocol', '')<>'') { return OC_Config::getValue('overwriteprotocol'); } if (isset($_SERVER['HTTP_X_FORWARDED_PROTO'])) { |