Links

I am using Html::a() within a gridview and all URLs are encoded, eg.




    index.php?r=category%2F%26CategorySearch[parent_id]%3D5



These will not resolve, the above should be:




   index.php?r=category&CategorySearch[parent_id]=5



How to fix this?

Figure it out - I did not add the search parameter as an array (cannot use = )

I still do not like that Yii encodes the slashes - why does it do this?