mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-08 08:14:25 +02:00
11 lines
183 B
PHP
11 lines
183 B
PHP
<?php
|
|
namespace Friendica\Worker;
|
|
|
|
require_once("include/threads.php");
|
|
|
|
class ThreadUpdate {
|
|
public static function execute() {
|
|
update_threads();
|
|
update_threads_mention();
|
|
}
|
|
}
|