mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
fixed handling of attributes stored in data, was depending on order or attributes to work
This commit is contained in:
parent
8ec5425c5a
commit
37671ac812
@ -36,7 +36,9 @@ function egwActionStoreJSON(_data, _obj, _setterOnly)
|
||||
}
|
||||
else if (_setterOnly === 'data')
|
||||
{
|
||||
_obj.data[key] = _data[key];
|
||||
if (typeof _data.data == 'undefined') _data.data = {};
|
||||
_data.data[key] = _data[key];
|
||||
_obj.set_data(_data.data);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user