forked from extern/egroupware
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);
|
}, 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Push the uid onto the queue
|
// Push the uid onto the queue, removing the prefix
|
||||||
queue[hash].uids.push(_uid.split("::").pop());
|
var parts = _uid.split("::");
|
||||||
|
parts.shift();
|
||||||
|
queue[hash].uids.push(parts.join('::'));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user