X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Ftagger.php;h=7cb43e330c951989b94e61cb7375dfe9836e20f0;hb=41663c7592abe55a958632c3a48265e0a8544d2b;hp=f8979ae6cac05f102f7be5cc4423675b1b25fbf5;hpb=c5558cc4595263e2654bb614f54d61273d79bc5f;p=friendica.git diff --git a/mod/tagger.php b/mod/tagger.php index f8979ae6ca..7cb43e330c 100644 --- a/mod/tagger.php +++ b/mod/tagger.php @@ -3,7 +3,7 @@ * @file mod/tagger.php */ use Friendica\App; -use Friendica\Core\Addon; +use Friendica\Core\Hook; use Friendica\Core\L10n; use Friendica\Core\Logger; use Friendica\Core\System; @@ -13,8 +13,6 @@ use Friendica\Model\Item; use Friendica\Util\Strings; use Friendica\Util\XML; -require_once 'include/items.php'; - function tagger_content(App $a) { if (!local_user() && !remote_user()) { @@ -201,11 +199,9 @@ EOT; $arr['id'] = $post_id; - Addon::callHooks('post_local_end', $arr); + Hook::callAll('post_local_end', $arr); Worker::add(PRIORITY_HIGH, "Notifier", "tag", $post_id); - killme(); - - return; // NOTREACHED + exit(); }