From e6c067858ec7f2c4e3e7da90f16c695f93a4ee07 Mon Sep 17 00:00:00 2001 From: Sean Catchpole Date: Thu, 26 Jul 2007 00:31:48 +0000 Subject: [PATCH] nevermind, I'm dumb. =P --- src/ajax/ajax.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js index c8e10bd..645caf7 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] ) ); -- 1.7.10.4