diff options
author | Sean Catchpole <littlecooldude@gmail.com> | 2007-07-26 00:31:48 +0000 |
---|---|---|
committer | Sean Catchpole <littlecooldude@gmail.com> | 2007-07-26 00:31:48 +0000 |
commit | e6c067858ec7f2c4e3e7da90f16c695f93a4ee07 (patch) | |
tree | 1b354084626c86c4cc205be9b33d5bf2dace8f2f /src/ajax | |
parent | 8a80d05a446ac7ac8a95459fb68932ddf539ff62 (diff) | |
download | jquery-e6c067858ec7f2c4e3e7da90f16c695f93a4ee07.tar.gz jquery-e6c067858ec7f2c4e3e7da90f16c695f93a4ee07.zip |
nevermind, I'm dumb. =P
Diffstat (limited to 'src/ajax')
-rw-r--r-- | src/ajax/ajax.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js index c8e10bd6d..645caf72e 100644 --- a/src/ajax/ajax.js +++ b/src/ajax/ajax.js @@ -794,7 +794,7 @@ jQuery.extend({ // If the value is an array then the key names need to be repeated if ( a[j] && a[j].constructor == Array ) jQuery.each( a[j], function(){ - s.push( encodeURIComponent(j) + "[]=" + encodeURIComponent( this ) ); + s.push( encodeURIComponent(j) + "=" + encodeURIComponent( this ) ); }); else s.push( encodeURIComponent(j) + "=" + encodeURIComponent( a[j] ) ); |