[open-ils-commits] r17946 - trunk/Open-ILS/web/js/dojo/openils (miker)

svn at svn.open-ils.org svn at svn.open-ils.org
Thu Sep 23 21:47:08 EDT 2010


Author: miker
Date: 2010-09-23 21:47:06 -0400 (Thu, 23 Sep 2010)
New Revision: 17946

Modified:
   trunk/Open-ILS/web/js/dojo/openils/PermaCrud.js
Log:
use _session_request in RO calls

Modified: trunk/Open-ILS/web/js/dojo/openils/PermaCrud.js
===================================================================
--- trunk/Open-ILS/web/js/dojo/openils/PermaCrud.js	2010-09-24 01:46:41 UTC (rev 17945)
+++ trunk/Open-ILS/web/js/dojo/openils/PermaCrud.js	2010-09-24 01:47:06 UTC (rev 17946)
@@ -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