]> git.mxchange.org Git - friendica.git/blobdiff - include/cronhooks.php
proc_run was replaced
[friendica.git] / include / cronhooks.php
index 4a852935a051a7522804c96e39a84c26b8fb2444..aa5d41afddee828d731cec49f8d8e42dfcbcf7bf 100644 (file)
@@ -1,6 +1,7 @@
 <?php
 
 use Friendica\Core\Config;
+use Friendica\Core\Worker;
 
 function cronhooks_run(&$argv, &$argc) {
        global $a;
@@ -41,7 +42,7 @@ function cronhooks_run(&$argv, &$argc) {
        if (is_array($a->hooks) && array_key_exists("cron", $a->hooks)) {
                foreach ($a->hooks["cron"] as $hook) {
                        logger("Calling cronhooks for '" . $hook[1] . "'", LOGGER_DEBUG);
-                       proc_run(PRIORITY_MEDIUM, "include/cronhooks.php", $hook[1]);
+                       Worker::add(PRIORITY_MEDIUM, "cronhooks", $hook[1]);
                }
        }