mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
Merge pull request #9691 from MrPetovan/bug/8896-unicode-tag-trimming
Add support for Unicode in Model\Tag::store
This commit is contained in:
commit
3ed4f427bf
1 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue