1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-17 03:51:06 +01:00

Fix metodo deprecato

This commit is contained in:
loviuz 2022-01-10 14:57:16 +01:00
parent 144b223b64
commit 87bea54a69

View File

@ -702,7 +702,7 @@ class Validator
$length = strlen($string);
for ($i=0; $i < $length; $i++) {
$current = ord($string{$i});
$current = ord($string[$i]);
if ($current < 0x20 || $current > 0x7E) {
$result .= ' ';