Now there are four more ...

This commit is contained in:
Michael 2017-11-15 21:12:33 +00:00
commit 0aee6d383a
7 changed files with 106 additions and 97 deletions

View file

@ -1,7 +1,11 @@
<?php
namespace Friendica\Worker;
require_once("include/threads.php");
function threadupdate_run(&$argv, &$argc){
update_threads();
update_threads_mention();
class ThreadUpdate {
public static function execute() {
update_threads();
update_threads_mention();
}
}