mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
Avoid sending back empty sub-arrays - apps that check for their presence, not contents, have trouble with them
This commit is contained in:
parent
4df977db0b
commit
d9275d53d0
@ -372,6 +372,16 @@ etemplate2.prototype.getValues = function(_root)
|
||||
{
|
||||
_target[id] = value;
|
||||
}
|
||||
else if (jQuery.isEmptyObject(_target))
|
||||
{
|
||||
// Avoid sending back empty sub-arrays
|
||||
_target = result
|
||||
for (var i = 0; i < path.length-1; i++)
|
||||
{
|
||||
_target = _target[path[i]];
|
||||
}
|
||||
delete _target[path[path.length-1]];
|
||||
}
|
||||
_widget.resetDirty();
|
||||
|
||||
}, this, et2_IInput);
|
||||
|
Loading…
Reference in New Issue
Block a user