]> git.mxchange.org Git - friendica.git/blobdiff - mod/tagger.php
Storing the protocol while following a contact
[friendica.git] / mod / tagger.php
index f8979ae6cac05f102f7be5cc4423675b1b25fbf5..7cb43e330c951989b94e61cb7375dfe9836e20f0 100644 (file)
@@ -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();
 }