forked from extern/egroupware
temp. fix for _ids containing (wrong) selections from different hierarchy levels, fixes doubleclick on InfoLog with children, selects more then one entry to open, which obviously fails
This commit is contained in:
parent
a65b23a3ee
commit
ee167028e3
@ -45,6 +45,12 @@ function nm_action(_action, _senders, _target, _ids)
|
||||
_action.data.nextmatch = nm;
|
||||
}
|
||||
}
|
||||
// temp. fix for _ids containing (wrong) selections from different hierarchy levels
|
||||
_ids.ids = [];
|
||||
for(var i = 0; i < _senders.length; i++)
|
||||
{
|
||||
if (_senders[i].id) _ids.ids.push(_senders[i].id);
|
||||
}
|
||||
|
||||
// Translate the internal uids back to server uids
|
||||
var idsArr = _ids.ids;
|
||||
|
Loading…
Reference in New Issue
Block a user