]> git.mxchange.org Git - friendica.git/blobdiff - util/maintenance.php
Possibly better handling of the single user admin setting
[friendica.git] / util / maintenance.php
index b0728245c65a6770131cbe0a5ad273774d15923e..9c9fc4f19d95404569c10e751fa6173f31a6f257 100644 (file)
@@ -1,10 +1,11 @@
 <?php
 
+use Friendica\App;
 use Friendica\Core\Config;
 
 require_once("boot.php");
 
-$a = new App;
+$a = new App(dirname(__DIR__));
 @include(".htconfig.php");
 
 $lang = get_browser_language();
@@ -23,7 +24,7 @@ if ($argc > 1) {
 
 Config::set('system', 'maintenance', $maint_mode);
 
-if ($maint_mode AND ($argc > 2)) {
+if ($maint_mode && ($argc > 2)) {
        $reason_arr = $argv;
        array_shift($reason_arr);
        array_shift($reason_arr);