From adce17a8b70d2ff4d8d47631ca44556fd7b8782a Mon Sep 17 00:00:00 2001 From: erickson Date: Fri, 9 Jan 2009 19:09:07 +0000 Subject: [PATCH] call recv() to get the result. git-svn-id: svn://svn.open-ils.org/ILS/trunk@11788 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/web/js/dojo/openils/PermaCrud.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Open-ILS/web/js/dojo/openils/PermaCrud.js b/Open-ILS/web/js/dojo/openils/PermaCrud.js index 46e5c9a37b..59757d1ad0 100644 --- a/Open-ILS/web/js/dojo/openils/PermaCrud.js +++ b/Open-ILS/web/js/dojo/openils/PermaCrud.js @@ -89,7 +89,7 @@ if(!dojo._hasResource["openils.PermaCrud"]) { req.send(); - if (req_hash.timeout) return req.result.content(); + if (req_hash.timeout) return req.recv().content(); return req; }, @@ -124,7 +124,7 @@ if(!dojo._hasResource["openils.PermaCrud"]) { req.send(); - if (req_hash.timeout) return req.result.content(); + if (req_hash.timeout) return req.recv().content(); return req; }, @@ -154,7 +154,7 @@ if(!dojo._hasResource["openils.PermaCrud"]) { req.send(); - if (req_hash.timeout) return req.result.content(); + if (req_hash.timeout) return req.recv().content(); return req; }, -- 2.11.0