fix mb_chr argument data type

This commit is contained in:
ghost 2024-02-12 22:33:55 +02:00
parent c5f7e636e0
commit cb5811ae58

View File

@ -11,7 +11,7 @@ class Kevacoin
if (is_numeric($value) && $value < 0xFFFFFFFF)
{
return mb_chr(
$value,
(int) $value,
'ASCII'
);
}