]> git.mxchange.org Git - friendica.git/commitdiff
added spaces, removed parentheses. there is more ahead than just this one.
authorRoland Haeder <roland@mxchange.org>
Sat, 25 Mar 2017 11:43:07 +0000 (12:43 +0100)
committerRoland Haeder <roland@mxchange.org>
Sat, 25 Mar 2017 11:44:24 +0000 (12:44 +0100)
Signed-off-by: Roland Haeder <roland@mxchange.org>
index.php

index 19f283039c49debd9f96194e4d80f3dcbeb465e2..19eb5bff7439d11965c91207d79597390a9af399 100644 (file)
--- a/index.php
+++ b/index.php
@@ -37,7 +37,7 @@ $install = ((file_exists('.htconfig.php') && filesize('.htconfig.php')) ? false
 
 // Only load config if found, don't surpress errors
 if (!$install) {
-       include(".htconfig.php");
+       include ".htconfig.php";
 }
 
 /**
@@ -46,11 +46,11 @@ if (!$install) {
  *
  */
 
-require_once("include/dba.php");
+require_once "include/dba.php";
 
 if (!$install) {
        $db = new dba($db_host, $db_user, $db_pass, $db_data, $install);
-           unset($db_host, $db_user, $db_pass, $db_data);
+       unset($db_host, $db_user, $db_pass, $db_data);
 
        /**
         * Load configs from db. Overwrite configs from .htconfig.php
@@ -59,13 +59,13 @@ if (!$install) {
        Config::load();
 
        if ($a->max_processes_reached() OR $a->maxload_reached()) {
-               header($_SERVER["SERVER_PROTOCOL"].' 503 Service Temporarily Unavailable');
+               header($_SERVER["SERVER_PROTOCOL"] . ' 503 Service Temporarily Unavailable');
                header('Retry-After: 120');
-               header('Refresh: 120; url='.App::get_baseurl()."/".$a->query_string);
+               header('Refresh: 120; url=' . App::get_baseurl() . "/" . $a->query_string);
                die("System is currently unavailable. Please try again later");
        }
 
-       if (get_config('system','force_ssl') AND ($a->get_scheme() == "http") AND
+       if (get_config('system', 'force_ssl') AND ($a->get_scheme() == "http") AND
                (intval(get_config('system','ssl_policy')) == SSL_POLICY_FULL) AND
                (substr(App::get_baseurl(), 0, 8) == "https://")) {
                header("HTTP/1.1 302 Moved Temporarily");