]> git.mxchange.org Git - friendica.git/blobdiff - scripts/worker.php
Add pwdreset_time field to user table
[friendica.git] / scripts / worker.php
index a3738038b1a93944fb83c7d5fb5bd4436d3471ad..a821fc1abecdbdd3f4dcf5a4d79733ed06414526 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)) {
@@ -42,7 +43,7 @@ if (Config::get('system', 'maintenance', true)) {
 
 $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();