Fixed: #11871 Replacing (deprecated) patchwork/utf8 by polyfill/mbstring.

This commit is contained in:
Katharina Drexel
2022-09-26 11:28:23 +02:00
parent 9369165007
commit 8316a4eb92
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -338,7 +338,7 @@ class CustomField extends Model
$id = $this->id ? $this->id : 'xx';
if (! function_exists('transliterator_transliterate')) {
$long_slug = '_snipeit_'.str_slug(\Patchwork\Utf8::utf8_encode(trim($name)), '_');
$long_slug = '_snipeit_'.str_slug(\Polyfill\Mbstring::mb_convert_encoding(trim($name)), '_');
} else {
$long_slug = '_snipeit_'.Utf8Slugger::slugify($name, '_');
}