One more fix needed to allow :: inside UIDs

This commit is contained in:
Nathan Gray 2013-12-09 21:13:59 +00:00
parent 4c03a02926
commit 72c3d211be

View File

@ -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
{