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