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
Strictly speaking, the problem is that [ and ] are not valid characters in the query part of the URI according to rfc3986 and this library was originally created with the intention of validating URLs strictly according to that RFC.
The extension you are using really ought to build URLs using logic similar to http_build_query(), so that the [] characters would get encoded properly like fields%5Barticles%5D=title.
But, I do realize that unfortunately a lot of places do not really conform to the spec very strictly so I might have to think about adding some kind of lenient parsing mode that would allow more characters than what the spec defines.
I have a problem with an array in query params.
Example:
Error:
I have no influence on the generation of the Urls, because they come from another extension.
Have you got a solution for this problem?
The text was updated successfully, but these errors were encountered: