[open-ils-commits] r17947 - branches/rel_2_0/Open-ILS/web/js/dojo/openils (miker)
svn at svn.open-ils.org
svn at svn.open-ils.org
Thu Sep 23 21:48:11 EDT 2010
Author: miker
Date: 2010-09-23 21:48:09 -0400 (Thu, 23 Sep 2010)
New Revision: 17947
Modified:
branches/rel_2_0/Open-ILS/web/js/dojo/openils/PermaCrud.js
Log:
Backport r17946 from trunk: use _session_request in RO calls
Modified: branches/rel_2_0/Open-ILS/web/js/dojo/openils/PermaCrud.js
===================================================================
--- branches/rel_2_0/Open-ILS/web/js/dojo/openils/PermaCrud.js 2010-09-24 01:47:06 UTC (rev 17946)
+++ branches/rel_2_0/Open-ILS/web/js/dojo/openils/PermaCrud.js 2010-09-24 01:48:09 UTC (rev 17947)
@@ -114,7 +114,7 @@
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 (!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 (!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); };
More information about the open-ils-commits
mailing list