sforkowany z mirror/friendica
Merge pull request #9691 from MrPetovan/bug/8896-unicode-tag-trimming
Add support for Unicode in Model\Tag::store2022.09-rc
commit
3ed4f427bf
|
@ -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) {
|
||||||
|
|
Ładowanie…
Reference in New Issue