Now there are four more ...

This commit is contained in:
Michael
2017-11-15 21:12:33 +00:00
parent 33e98d6264
commit 0aee6d383a
7 changed files with 113 additions and 104 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();
}
}