mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-30 01:04:12 +02:00
parent
d0a29d4716
commit
6ca14a58b0
@ -8,6 +8,6 @@ class PropertyModifierLowercase extends PropertyModifierHook
|
||||
{
|
||||
public function transform($value)
|
||||
{
|
||||
return strtolower($value);
|
||||
return \mb_strtolower($value, 'UTF-8');
|
||||
}
|
||||
}
|
||||
|
@ -8,6 +8,6 @@ class PropertyModifierUppercase extends PropertyModifierHook
|
||||
{
|
||||
public function transform($value)
|
||||
{
|
||||
return strtoupper($value);
|
||||
return \mb_strtoupper($value, 'UTF-8');
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user