]> git.mxchange.org Git - friendica.git/commitdiff
fixed indending + closed own internal todo: better usage of x()
authorRoland Haeder <roland@mxchange.org>
Sat, 25 Mar 2017 12:33:15 +0000 (13:33 +0100)
committerRoland Haeder <roland@mxchange.org>
Sat, 25 Mar 2017 12:37:46 +0000 (13:37 +0100)
removed todo

Signed-off-by: Roland Haeder <roland@mxchange.org>
boot.php

index 2a6e9b4ca52900e29f241edd03f483c4a11c7dbd..474cb82057721febe1b0d6cfb5246280b4773f4c 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -655,14 +655,14 @@ class App {
 
 
                $this->scheme = 'http';
-               /// @TODO x() should be better used here ...
+
                if ((x($_SERVER, 'HTTPS') && $_SERVER['HTTPS']) ||
-                  (x($_SERVER['HTTP_FORWARDED']) && preg_match("/proto=https/", $_SERVER['HTTP_FORWARDED'])) ||
-                  (x($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') ||
-                  (x($_SERVER['HTTP_X_FORWARDED_SSL']) && $_SERVER['HTTP_X_FORWARDED_SSL'] == 'on') ||
-                  (x($_SERVER['FRONT_END_HTTPS']) && $_SERVER['FRONT_END_HTTPS'] == 'on') ||
-                  (x($_SERVER, 'SERVER_PORT') && (intval($_SERVER['SERVER_PORT']) == 443)) // XXX: reasonable assumption, but isn't this hardcoding too much?
-                  ) {
+                               (x($_SERVER, 'HTTP_FORWARDED') && preg_match("/proto=https/", $_SERVER['HTTP_FORWARDED'])) ||
+                               (x($_SERVER, 'HTTP_X_FORWARDED_PROTO') && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') ||
+                               (x($_SERVER, 'HTTP_X_FORWARDED_SSL') && $_SERVER['HTTP_X_FORWARDED_SSL'] == 'on') ||
+                               (x($_SERVER, 'FRONT_END_HTTPS') && $_SERVER['FRONT_END_HTTPS'] == 'on') ||
+                               (x($_SERVER, 'SERVER_PORT') && (intval($_SERVER['SERVER_PORT']) == 443)) // XXX: reasonable assumption, but isn't this hardcoding too much?
+                               ) {
                        $this->scheme = 'https';
                }
 
@@ -1367,7 +1367,6 @@ class App {
                // add baseurl to args. cli scripts can't construct it
                $args[] = $this->get_baseurl();
 
-               /// @TODO let's replace these with a foreach($key => $value) loop
                for ($x = 0; $x < count($args); $x ++) {
                        $args[$x] = escapeshellarg($args[$x]);
                }