[-] FO : fixed usage of "&" in the order messages added by the customers

This commit is contained in:
Damien Metzger
2012-12-26 12:50:34 +01:00
parent f3fd6f9009
commit c9a29f8b2a
+1 -1
View File
@@ -103,7 +103,7 @@ function sendOrderMessage()
{
paramString = "ajax=true";
$('#sendOrderMessage').find('input, textarea').each(function(){
paramString += '&' + $(this).attr('name') + '=' + encodeURI($(this).val());
paramString += '&' + $(this).attr('name') + '=' + escape($(this).val());
});
$.ajax({