Piwik dedupes the url parameters that are similar?

Hello I discovered Piwik there a short time ago and like it !!
But I realized that the url that contain multiple parameters of the same type appear to be filtered.
for example, the URL :

http://mydomain.com/search.pl?idx=kw&q=ccccc&idx=kw&q=ddddd&idx=kw&limit=mc-itemtype%2Cphr%3AVI&limit=mc-itemtype%2Cphr%3ADO&limit=mc-itemtype%2Cphr%3AME&sort_by=relevance&do=Search

becomes into the Actions module and in the “name” field of piwik_log_action db table :

http://mydomain.com/search.pl?idx=kw&q=ddddd&limit=mc-itemtype%2Cphr%3AME&sort_by=relevance&do=Search

the original url have 3 "idx"parameters, 2 “q” parameters, 3 “limit” parameters ; but the stored url in piwik only have one of each.

Is this a normal behavior ?
Is there a parameter to change in Piwik to fix this?

Best Regards

Yes it is normal behavior. There is no way to disable this feature, as technically having several parameters named the same is to be avoided :slight_smile:

thank you for this answer