Merge pull request #8631 from MrPetovan/task/remove-item-tag-field

Remove references to obsolete virtual tag item.tag
This commit is contained in:
Michael Vogel 2020-05-14 06:29:46 +02:00 committed by GitHub
commit cc8491223e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 10 deletions

View file

@ -366,12 +366,14 @@ class Tag
* Return a string with all tags and mentions
*
* @param integer $uri_id
* @param array $type
* @return string tags and mentions
* @throws \Exception
*/
public static function getCSVByURIId(int $uri_id)
public static function getCSVByURIId(int $uri_id, array $type = [self::HASHTAG, self::MENTION, self::IMPLICIT_MENTION, self::EXCLUSIVE_MENTION])
{
$tag_list = [];
$tags = self::getByURIId($uri_id);
$tags = self::getByURIId($uri_id, $type);
foreach ($tags as $tag) {
$tag_list[] = self::TAG_CHARACTER[$tag['type']] . '[url=' . $tag['url'] . ']' . $tag['name'] . '[/url]';
}