From 3d5405de405d474156d44195a376c4ae86e1560a Mon Sep 17 00:00:00 2001 From: miker Date: Fri, 24 Sep 2010 01:48:09 +0000 Subject: [PATCH] Backport r17946 from trunk: use _session_request in RO calls git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_2_0@17947 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 5bc6d3905d..ba8323acc7 100644 --- a/Open-ILS/web/js/dojo/openils/PermaCrud.js +++ b/Open-ILS/web/js/dojo/openils/PermaCrud.js @@ -114,7 +114,7 @@ if(!dojo._hasResource["openils.PermaCrud"]) { if (!opts.async && !opts.timeout) req_hash.timeout = 10; var _pcrud = this; - var req = this.session.request( req_hash ); + var req = this._session_request( req_hash ); if (!req.onerror) req.onerror = function (r) { throw js2JSON(r); }; @@ -163,7 +163,7 @@ if(!dojo._hasResource["openils.PermaCrud"]) { if (!opts.async && !opts.timeout) req_hash.timeout = 10; var _pcrud = this; - var req = this.session.request( req_hash ); + var req = this._session_request( req_hash ); if (!req.onerror) req.onerror = function (r) { throw js2JSON(r); }; @@ -209,7 +209,7 @@ if(!dojo._hasResource["openils.PermaCrud"]) { if (!opts.async && !opts.timeout) req_hash.timeout = 10; var _pcrud = this; - var req = this.session.request( req_hash ); + var req = this._session_request( req_hash ); if (!req.onerror) req.onerror = function (r) { throw js2JSON(r); }; -- 2.11.0