mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
One more fix needed to allow :: inside UIDs
This commit is contained in:
parent
4c03a02926
commit
72c3d211be
@ -338,8 +338,10 @@ egw.extend("data_storage", egw.MODULE_GLOBAL, function (_app, _wnd) {
|
||||
}, 100);
|
||||
}
|
||||
|
||||
// Push the uid onto the queue
|
||||
queue[hash].uids.push(_uid.split("::").pop());
|
||||
// Push the uid onto the queue, removing the prefix
|
||||
var parts = _uid.split("::");
|
||||
parts.shift();
|
||||
queue[hash].uids.push(parts.join('::'));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user