diff --git a/phpgwapi/js/jsapi/egw_data.js b/phpgwapi/js/jsapi/egw_data.js index fd76ca734b..7902179414 100644 --- a/phpgwapi/js/jsapi/egw_data.js +++ b/phpgwapi/js/jsapi/egw_data.js @@ -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 {