I have a url that contains these parameters:
<_ts1=blah>_ts1=blah
Internet Explorer takes it upon itself to change it to this (regardless of a lack of semi-colons):
<_ts1=blah>_ts1=blah
The url string is generated in PHP. Is there any way of protecting the url in IE without changing the parameter names (worst case scenario)?
Ta!