-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
[Form Validation] Associative arrays as field names doesn't work properly #4163
Comments
Thanks a lot for filing this issue, and including an easy to understand test case. I've added a milestone, and will try to take a look as soon as I can. |
I've fixed this, but by going a slightly different direction. The main reason it was failing with associative arrays was it was attempting to find an id tag first using an invalid value, which I now check for 6e88af1 Fixed in Thanks @mzygmunt for your patience, as I know this was not dealt with promptly. |
I've gone a slightly more generic route this also solves using identifiers with escaped string values like |
Field names like "test[]" works fine, but names like "test[en]" doesn't work. In this case Form Validation returns simple string "test[en]" instead of array.
The text was updated successfully, but these errors were encountered: