From aa3c0ca7c0fc0b37a80ad8cac26d126c0dd92772 Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Tue, 18 Mar 2014 22:28:50 +0000 Subject: [PATCH] Pass along last modification time to callback --- phpgwapi/js/jsapi/egw_data.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpgwapi/js/jsapi/egw_data.js b/phpgwapi/js/jsapi/egw_data.js index 2d06d99107..1bd0598323 100644 --- a/phpgwapi/js/jsapi/egw_data.js +++ b/phpgwapi/js/jsapi/egw_data.js @@ -90,7 +90,8 @@ egw.extend("data", egw.MODULE_APP_LOCAL, function (_app, _wnd) { "order": _result.order, "total": parseInt(_result.total), "readonlys": _result.readonlys, - "rows": _result.rows + "rows": _result.rows, + "lastModification": lastModification }); } }