-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Admin API and arrays #1391
Comments
I don't see why we would drop the comma separated way of passing arrays. It would be a breaking change. Instead we should advocate the array way of doing things, but not breaking the comma separated ones. |
the underlying problem is fixed in #1399. |
The way I see it, the comma separation is just a non-elegant solution to a problem that can be already fixed with form-encoded arrays using square brackets. |
Hmmm... do we want to break backward compatibility because on non-elegance? |
Addressed in the new Admin API - entities are now slowly migrating there. |
param[1]=v1¶m[2]=v2
. We should also support adding arrays without an index in the form ofparam[]=v1¶m[]=v2
.The text was updated successfully, but these errors were encountered: