git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
82ac384
)
Fix fix for #6481 introduced at 7862c45ad2f32096383a21b8b301155787724476 which did...
author
Colin Snover
<github.com@zetafleet.com>
Thu, 23 Dec 2010 00:54:22 +0000
(18:54 -0600)
committer
Colin Snover
<github.com@zetafleet.com>
Thu, 23 Dec 2010 00:54:22 +0000
(18:54 -0600)
src/ajax.js
patch
|
blob
|
history
diff --git
a/src/ajax.js
b/src/ajax.js
index
da130fa
..
3f4f732
100644
(file)
--- a/
src/ajax.js
+++ b/
src/ajax.js
@@
-343,7
+343,9
@@
function buildParams( prefix, obj, traditional, add ) {
});
} else if ( !traditional && obj != null && typeof obj === "object" ) {
- if ( jQuery.isEmptyObject( obj ) ) {
+ // If we see an array here, it is empty and should be treated as an empty
+ // object
+ if ( jQuery.isArray( obj ) || jQuery.isEmptyObject( obj ) ) {
add( prefix, "" );
// Serialize object item.