Move getTags to BBCode

move getTags function to BBCode class and update calls.
This commit is contained in:
Adam Magness 2018-11-09 13:24:19 -05:00
parent e4354a0d7b
commit b5a97c1abe
5 changed files with 78 additions and 78 deletions

View file

@ -2403,7 +2403,7 @@ class Item extends BaseObject
public static function setHashtags(&$item)
{
$tags = Strings::getTags($item["body"]);
$tags = BBCode::getTags($item["body"]);
// No hashtags?
if (!count($tags)) {