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

View File

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