summaryrefslogtreecommitdiffstats
path: root/lib/request.php
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-06-17 00:02:42 +0200
committerThomas Mueller <thomas.mueller@tmit.eu>2013-06-17 00:02:42 +0200
commit383e4c62b578996b343b540e03c7afed61be644e (patch)
tree657b8d6fe22e2580482ed65a89c7d00681974f5b /lib/request.php
parente013e7adea7ce1759e0b65786285c96d0c41e153 (diff)
downloadnextcloud-server-383e4c62b578996b343b540e03c7afed61be644e.tar.gz
nextcloud-server-383e4c62b578996b343b540e03c7afed61be644e.zip
in case $_SERVER['HTTP_HOST']) is not set let's return localhost - better than nothing
Diffstat (limited to 'lib/request.php')
-rwxr-xr-xlib/request.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/request.php b/lib/request.php
index 4d8380eb9ac..aa5f53c08eb 100755
--- a/lib/request.php
+++ b/lib/request.php
@@ -19,7 +19,7 @@ class OC_Request {
/**
* @brief Returns the server host
- * @returns the server host
+ * @returns string the server host
*
* Returns the server host, even if the website uses one or more
* reverse proxies
@@ -40,7 +40,7 @@ class OC_Request {
}
}
else{
- $host = $_SERVER['HTTP_HOST'];
+ $host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : 'localhost';
}
return $host;
}
@@ -48,7 +48,7 @@ class OC_Request {
/**
* @brief Returns the server protocol
- * @returns the server protocol
+ * @returns string the server protocol
*
* Returns the server protocol. It respects reverse proxy servers and load balancers
*/
@@ -70,7 +70,7 @@ class OC_Request {
/**
* @brief Returns the request uri
- * @returns the request uri
+ * @returns string the request uri
*
* Returns the request uri, even if the website uses one or more
* reverse proxies
@@ -85,7 +85,7 @@ class OC_Request {
/**
* @brief Returns the script name
- * @returns the script name
+ * @returns string the script name
*
* Returns the script name, even if the website uses one or more
* reverse proxies
@@ -139,7 +139,7 @@ class OC_Request {
/**
* @brief Check if this is a no-cache request
- * @returns true for no-cache
+ * @returns boolean true for no-cache
*/
static public function isNoCache() {
if (!isset($_SERVER['HTTP_CACHE_CONTROL'])) {
@@ -150,7 +150,7 @@ class OC_Request {
/**
* @brief Check if the requestor understands gzip
- * @returns true for gzip encoding supported
+ * @returns boolean true for gzip encoding supported
*/
static public function acceptGZip() {
if (!isset($_SERVER['HTTP_ACCEPT_ENCODING'])) {