silverstripe-framework/admin/javascript
Ingo Schommer 7337f26d3a Fix non-standard url encoding in CMS search form
jQuery uses encodeURIComponent, but also this line here:
return s.join( "&" ).replace( r20, "+" );
https://github.com/jquery/jquery/blob/1.7.2/src/ajax.js#L797

This breaks when passing the result through $.path.addSearchParams(),
which in turn uses jQuery.param - any '%20' would've been wrongly encoded as '+' by jQuery.serialise(),
which in turn gets rightly encoded as '%2B' by jQuery.param().

This had the effect of breaking CMS searches with spaces in them.
2016-04-05 22:30:50 +12:00
..
dist Fix non-standard url encoding in CMS search form 2016-04-05 22:30:50 +12:00
lang Update translations 2016-02-19 10:54:36 +13:00
src Fix non-standard url encoding in CMS search form 2016-04-05 22:30:50 +12:00