]> git.mxchange.org Git - friendica.git/blobdiff - scripts/worker.php
fix docstring of `get_poke_verbs()`
[friendica.git] / scripts / worker.php
index a3738038b1a93944fb83c7d5fb5bd4436d3471ad..ba17750f053b33147e1c2ce4a3f3b5f87cbeaa44 100755 (executable)
@@ -6,8 +6,9 @@
  */
 
 use Friendica\App;
-use Friendica\Core\Worker;
+use Friendica\Core\Addon;
 use Friendica\Core\Config;
+use Friendica\Core\Worker;
 
 // Ensure that worker.php is executed from the base path of the installation
 if (!file_exists("boot.php") && (sizeof($_SERVER["argv"]) != 0)) {
@@ -36,13 +37,13 @@ Config::load();
 check_db(true);
 
 // Quit when in maintenance
-if (Config::get('system', 'maintenance', true)) {
+if (Config::get('system', 'maintenance', false, true)) {
        return;
 }
 
 $a->set_baseurl(Config::get('system', 'url'));
 
-load_hooks();
+Addon::loadHooks();
 
 $spawn = (($_SERVER["argc"] == 2) && ($_SERVER["argv"][1] == "spawn"));
 
@@ -57,7 +58,7 @@ Worker::processQueue($run_cron);
 
 Worker::unclaimProcess();
 
-$a->end_process();
+Worker::endProcess();
 
 killme();