<div dir="ltr">Hi,<div><br></div><div>I'm working on bug ticket <a href="http://sourceforge.net/p/phpmyadmin/bugs/3733/">http://sourceforge.net/p/phpmyadmin/bugs/3733/</a></div><div>I already replaced all & in PHP files by the separator defined in php.ini.</div>

<div>I also replaced a part of & in JS files (almost all). But I still have an issue… with Jquery method $.get…</div><div><br></div><div>This method have many parameters, and one could be a JSON object of URL parameters.</div>

<div>Something like this:</div><div><div>    var params = {</div><div>        aPath: $expandElem.find('span.aPath').text(),</div><div>        vPath: $expandElem.find('span.vPath').text()</div><div>    };</div>

</div><div>And this:</div><div>$.get(url, params, function (data) {<br></div><div>…</div><div>});</div><div><br></div><div>Imagine that you set the arg_separator to "|" in your php.ini, the result will be:</div>

<div>- initial URL: <a href="http://myurl.com/mypage.php?p1=v1|p2=V2">http://myurl.com/mypage.php?p1=v1|p2=V2</a></div><div>- params: var params = {</div><div>        p3: "v3",</div>        p4: "v4"<div>

    };</div><div>- generated URL: <a href="http://myurl.com/mypage.php?p1=v1|p2=V2&p3=v3|p4=v4">http://myurl.com/mypage.php?p1=v1|p2=V2&p3=v3|p4=v4</a></div><div><br></div><div>As you can see, there is a & between the initial URL and the added parameters…</div>

<div><br></div><div>Do you know a way to manage the arg_separator used by Jquery please?</div><div><br></div><div>Thanks a lot !</div><div>Hugues.</div></div>