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:
parent
7e2810fa95
commit
eed3803c98
2 changed files with 6 additions and 6 deletions
|
@ -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();
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue