X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fajax%2Fajax.js;h=f87f562917a504a67172014d44ffe988c927ff4f;hb=75b6bcdb4206fc8cb0bd4294bdc9fef87c44325d;hp=9a9e0eb624423f8a2579c3f7330a3f488ec4a898;hpb=d7b73ea5c7440c49c804b3cafe67e84aafbdd064;p=jquery.git diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js index 9a9e0eb..f87f562 100644 --- a/src/ajax/ajax.js +++ b/src/ajax/ajax.js @@ -790,7 +790,7 @@ jQuery.extend({ if ( a.constructor == Array || a.jquery ) // Serialize the form elements for ( var i = 0; i < a.length; i++ ) - s.push( a[i].name + "=" + encodeURIComponent( a[i].value ) ); + s.push( encodeURIComponent(a[i].name) + "=" + encodeURIComponent( a[i].value ) ); // Otherwise, assume that it's an object of key/value pairs else @@ -799,9 +799,9 @@ jQuery.extend({ // If the value is an array then the key names need to be repeated if ( a[j].constructor == Array ) for ( var k = 0; k < a[j].length; k++ ) - s.push( j + "=" + encodeURIComponent( a[j][k] ) ); + s.push( encodeURIComponent(j) + "=" + encodeURIComponent( a[j][k] ) ); else - s.push( j + "=" + encodeURIComponent( a[j] ) ); + s.push( encodeURIComponent(j) + "=" + encodeURIComponent( a[j] ) ); // Return the resulting serialization return s.join("&");