You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I use rule alpha_space with string like this "ěščřžýáí" validation resilt is false.
After I changed this line:
return preg_match('/^(['.self::$alpha_regex.'\s])+$/i', $value) > 0;
into:
return preg_match('/^(['.self::$alpha_regex.'\s])+$/ui', $value) > 0;
then it works as expected.
The text was updated successfully, but these errors were encountered:
When I use rule alpha_space with string like this "ěščřžýáí" validation resilt is false.
After I changed this line:
return preg_match('/^(['.self::$alpha_regex.'\s])+$/i', $value) > 0;
into:
return preg_match('/^(['.self::$alpha_regex.'\s])+$/ui', $value) > 0;
then it works as expected.
The text was updated successfully, but these errors were encountered: