X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fsubthread.php;h=23ebf4fe4858f40a7f46f2bde0a6251852edb09d;hb=55e54bb9500f54bb075dcbc2054018de0969d9e7;hp=36cf835c281cb9ceecbac3a9a308edeeee583776;hpb=2f28c2ebbfd8f66093d7081d40b1d48f65fcff20;p=friendica.git diff --git a/mod/subthread.php b/mod/subthread.php index 36cf835c28..23ebf4fe48 100644 --- a/mod/subthread.php +++ b/mod/subthread.php @@ -3,15 +3,15 @@ * @file mod/subthread.php */ use Friendica\App; -use Friendica\Core\Addon; +use Friendica\Core\Hook; use Friendica\Core\L10n; use Friendica\Core\Logger; use Friendica\Core\System; use Friendica\Database\DBA; use Friendica\Model\Item; use Friendica\Util\Security; - -require_once 'include/items.php'; +use Friendica\Util\Strings; +use Friendica\Util\XML; function subthread_content(App $a) { @@ -21,7 +21,7 @@ function subthread_content(App $a) { $activity = ACTIVITY_FOLLOW; - $item_id = (($a->argc > 1) ? notags(trim($a->argv[1])) : 0); + $item_id = (($a->argc > 1) ? Strings::escapeTags(trim($a->argv[1])) : 0); $condition = ["`parent` = ? OR `parent-uri` = ? AND `parent` = `id`", $item_id, $item_id]; $item = Item::selectFirst([], $condition); @@ -87,7 +87,7 @@ function subthread_content(App $a) { $post_type = (($item['resource-id']) ? L10n::t('photo') : L10n::t('status')); $objtype = (($item['resource-id']) ? ACTIVITY_OBJ_IMAGE : ACTIVITY_OBJ_NOTE ); - $link = xmlify('' . "\n") ; + $link = XML::escape('' . "\n"); $body = $item['body']; $obj = <<< EOT @@ -149,8 +149,8 @@ EOT; $arr['id'] = $post_id; - Addon::callHooks('post_local_end', $arr); + Hook::callAll('post_local_end', $arr); - killme(); + exit(); }