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
Validator\Numericality::validate() uses this regular expression according to .zep. pattern = "/((^[-]?[0-9,]+(.[0-9]+)?$)|(^[-]?[0-9.]+(,[0-9]+)?$))/";
But isn't (.[0-9]+)? a mistake for (\.[0-9]+)??
Details
Phalcon version: 5.0.0 RC4
PHP Version: 8.1.9
Operating System: Debian on Docker (WSL2)
Installation type: Compiling from source
Zephir version (if any):
Server: Nginx/1.22.0
The text was updated successfully, but these errors were encountered:
Validator\Numericality::validate() uses this regular expression according to .zep.
pattern = "/((^[-]?[0-9,]+(.[0-9]+)?$)|(^[-]?[0-9.]+(,[0-9]+)?$))/";
But isn't
(.[0-9]+)?
a mistake for(\.[0-9]+)?
?Details
The text was updated successfully, but these errors were encountered: