Add support for Unicode in Model\Tag::store

This commit is contained in:
Hypolite Petovan 2020-12-21 01:29:51 -05:00
parent 71bd6c674b
commit f0eeb4900f
1 changed files with 2 additions and 2 deletions

View File

@ -70,8 +70,8 @@ class Tag
public static function store(int $uriid, int $type, string $name, string $url = '', $probing = true)
{
if ($type == self::HASHTAG) {
// Remove some common "garbarge" from tags
$name = trim($name, "\x00..\x20\xFF#!@,;.:'/?!^°$%".'"');
// Trim Unicode non-word characters
$name = preg_replace('/(^\W+)|(\W+$)/us', '', $name);
$tags = explode(self::TAG_CHARACTER[self::HASHTAG], $name);
if (count($tags) > 1) {