Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

numericality - OnlyIntegerValidator RegEx fix #27

Open
tec opened this issue Nov 30, 2009 · 1 comment
Open

numericality - OnlyIntegerValidator RegEx fix #27

tec opened this issue Nov 30, 2009 · 1 comment

Comments

@tec
Copy link

tec commented Nov 30, 2009

The validator in
lib/validatious-on-rails/validatious/validators/numericality/only_integer_validator.rb
tests if an input is a integer. However the regex used uses a backslash that needs to be escaped in order to be correctly translated to javascript:
buggy:
return /^[+-]?\d+$/.test(value);
fix:
return /^[+-]?\d+$/.test(value);

@tjoneseng
Copy link

This is fixed in my fork.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants