When serializing text, encode all line breaks as CRLF pairs per the application/x-www-form-urlencoded specification. Fixes #6876.

This commit is contained in:
Dave Methvin 2010-12-31 13:56:51 -06:00 committed by Colin Snover
parent 7e2810fa95
commit eed3803c98
2 changed files with 6 additions and 6 deletions

View file

@ -107,9 +107,9 @@ jQuery.fn.extend({
null :
jQuery.isArray(val) ?
jQuery.map( val, function(val, i){
return {name: elem.name, value: val};
return {name: elem.name, value: val.replace(/\r?\n/g, "\r\n")};
}) :
{name: elem.name, value: val};
{name: elem.name, value: val.replace(/\r?\n/g, "\r\n")};
}).get();
}
});