]> git.mxchange.org Git - friendica.git/commitdiff
Standards, like always
authorMichael <heluecht@pirati.ca>
Sun, 19 Mar 2017 14:57:36 +0000 (14:57 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 19 Mar 2017 14:57:36 +0000 (14:57 +0000)
util/maintenance.php

index a49bf01ac60cec988adb4a78e88ff102a2f91052..b313783a7da24e4fb38d242c9d218e3d2478dadc 100644 (file)
@@ -17,13 +17,13 @@ unset($db_host, $db_user, $db_pass, $db_data);
 Config::load();
 
 $maint_mode = 1;
-if($argc > 1) {
+if ($argc > 1) {
        $maint_mode = intval($argv[1]);
 }
 
 Config::set('system', 'maintenance', $maint_mode);
 
-if($maint_mode AND ($argc > 2)) {
+if ($maint_mode AND ($argc > 2)) {
        $reason_arr = $argv;
        array_shift($reason_arr);
        array_shift($reason_arr);
@@ -34,7 +34,7 @@ if($maint_mode AND ($argc > 2)) {
        Config::set('system', 'maintenance_reason', '');
 }
 
-if($maint_mode) {
+if ($maint_mode) {
        $mode_str = "maintenance mode";
 } else {
        $mode_str = "normal mode";