Merge pull request #9691 from MrPetovan/bug/8896-unicode-tag-trimming

Add support for Unicode in Model\Tag::store
This commit is contained in:
Michael Vogel 2020-12-24 13:59:11 +01:00 committed by GitHub
commit 3ed4f427bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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) {