2014-03-16 18:19:19 +01:00
|
|
|
<?php
|
2017-11-15 22:12:33 +01:00
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2014-03-16 18:19:19 +01:00
|
|
|
require_once("include/threads.php");
|
|
|
|
|
2017-11-15 22:12:33 +01:00
|
|
|
class ThreadUpdate {
|
|
|
|
public static function execute() {
|
|
|
|
update_threads();
|
|
|
|
update_threads_mention();
|
|
|
|
}
|
2014-03-16 18:19:19 +01:00
|
|
|
}
|