Skip to content

Commit

Permalink
Merge pull request ezsystems#1264 from joaoinacio/ezp26427_ezoe_popup…
Browse files Browse the repository at this point in the history
…utils_urlencode

Fix EZP-26427: ezoe popup search string not urlencoded
  • Loading branch information
João Inácio committed Oct 17, 2016
2 parents 9fdebb8 + 5461a7a commit 2dfb5cb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -745,7 +745,7 @@ var eZOEPopupUtils = {
var postData = '', val;
jQuery.each( jQuery('#' + id + ' input, #' + id + ' select').serializeArray(), function(i, o){
if ( o.value )
postData += ( postData ? '&' : '') + o.name + '=' + o.value;
postData += ( postData ? '&' : '') + o.name + '=' + encodeURIComponent(o.value);
});
return postData;
},
Expand Down

0 comments on commit 2dfb5cb

Please sign in to comment.