From 54d889d9ecdd44432c7c7672affff945c37f5184 Mon Sep 17 00:00:00 2001 From: miker Date: Fri, 24 Sep 2010 01:47:06 +0000 Subject: [PATCH] use _session_request in RO calls git-svn-id: svn://svn.open-ils.org/ILS/trunk@17946 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