mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
Keep type of value as Object, fixes missing nextmatch data
This commit is contained in:
parent
77ff3ca385
commit
dc5fabfcb4
@ -420,7 +420,7 @@ etemplate2.prototype.getValues = function(_root)
|
||||
// Merge, if possible (link widget)
|
||||
if(typeof _target[id] == 'object' && typeof value == 'object')
|
||||
{
|
||||
_target[id] = jQuery.extend([],_target[id],value);
|
||||
_target[id] = jQuery.extend({},_target[id],value);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user