🐛 Bug Fix
- Ajax / GET requests: when a request URL already contained a query string (e.g.
filebrowser.ajax.url: '/connector/index.php?uid=123'),prepareRequestcorrupted it —parseQueryreceived the whole URL instead of just its query part, so the URL path was glued into the first parameter name (index.php?connector%2Findex.php%3Fuid=123&...) and the baked-in parameters were duplicated instead of being merged with (and overridden by) the request data. The query part is now extracted before parsing, so URL parameters merge cleanly anddatakeys take priority. Reported by a customer (EventSystemPro, Jodit Multi PRO).