the "term" field now is called "name", workaround removed
This commit is contained in:
parent
74081a71ff
commit
729c6b67aa
3 changed files with 3 additions and 14 deletions
|
@ -1061,7 +1061,7 @@ function item_add_implicit_mentions(array $tags, array $thread_parent_contact, $
|
||||||
$parent_terms = Tag::getByURIId($thread_parent_uriid, [Tag::MENTION, Tag::IMPLICIT_MENTION]);
|
$parent_terms = Tag::getByURIId($thread_parent_uriid, [Tag::MENTION, Tag::IMPLICIT_MENTION]);
|
||||||
|
|
||||||
foreach ($parent_terms as $parent_term) {
|
foreach ($parent_terms as $parent_term) {
|
||||||
$implicit_mentions[$parent_term['url']] = $parent_term['term'];
|
$implicit_mentions[$parent_term['url']] = $parent_term['name'];
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($implicit_mentions as $url => $label) {
|
foreach ($implicit_mentions as $url => $label) {
|
||||||
|
|
|
@ -320,18 +320,7 @@ class Tag
|
||||||
public static function getByURIId(int $uri_id, array $type = [self::HASHTAG, self::MENTION, self::IMPLICIT_MENTION, self::EXCLUSIVE_MENTION])
|
public static function getByURIId(int $uri_id, array $type = [self::HASHTAG, self::MENTION, self::IMPLICIT_MENTION, self::EXCLUSIVE_MENTION])
|
||||||
{
|
{
|
||||||
$condition = ['uri-id' => $uri_id, 'type' => $type];
|
$condition = ['uri-id' => $uri_id, 'type' => $type];
|
||||||
$tags = DBA::select('tag-view', ['type', 'name', 'url'], $condition);
|
return DBA::selectToArray('tag-view', ['type', 'name', 'url'], $condition);
|
||||||
if (!DBA::isResult($tags)) {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
|
|
||||||
$tag_list = [];
|
|
||||||
while ($tag = DBA::fetch($tags)) {
|
|
||||||
$tag['term'] = $tag['name']; /// @todo Remove this line when all occurrences of "term" had been replaced with "name"
|
|
||||||
$tag_list[] = $tag;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $tag_list;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
{{if $term.type == 8}}Implicit Mention{{/if}}
|
{{if $term.type == 8}}Implicit Mention{{/if}}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{$term.term}}
|
{{$term.name}}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{$term.url}}
|
{{$term.url}}
|
||||||
|
|
Loading…
Reference in a new issue