Problem/Motivation
Checking D7 Link #2333119: Output broken when using array parameters in query on D8 there are some issues with array query parameters.
- '?a[]=0&b[]=0&b[]=1'
- '?a[0]=0&b[0]=0&b[1]=1',
their link when viewing are rendered (URL encoding removed for readability) with duplicated content.
a[0]=0&a[1]=0&b[0]=0&b[1]=1&b[2]=0&b[3]=1
The title rendering is unreadable including for other tests (which is probably a different issue?)
- '?filter[a][b]=c',
- '?a[b[c]]=d',