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

validate.js require method doesn't work for attributes whose value is evaluated to false #3

Open
marianoguerra opened this issue Oct 3, 2009 · 0 comments

Comments

@marianoguerra
Copy link

the line 22 of validate contains the following

if (!newDoc[field]) forbidden(message);

that means that if the field evalueates to false (like 0, 0.0, "" or false) then it will return forbidden

the line should be

if (typeof(newDoc[field]) === "undefined") forbidden(message);

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

No branches or pull requests

1 participant