From f86efff8a1e6634845b64859d129f17ea4065e73 Mon Sep 17 00:00:00 2001 From: phasefx Date: Mon, 5 Dec 2005 22:17:16 +0000 Subject: [PATCH] OpenILS.data only needs session at startup git-svn-id: svn://svn.open-ils.org/ILS/trunk@2230 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/server/circ/checkout.js | 2 +- Open-ILS/xul/staff_client/server/patron/display.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/xul/staff_client/server/circ/checkout.js b/Open-ILS/xul/staff_client/server/circ/checkout.js index 205fed3d72..fb225649a2 100644 --- a/Open-ILS/xul/staff_client/server/circ/checkout.js +++ b/Open-ILS/xul/staff_client/server/circ/checkout.js @@ -17,7 +17,7 @@ circ.checkout.prototype = { obj.patron_id = params['patron_id']; JSAN.use('OpenILS.data'); obj.OpenILS = {}; - obj.OpenILS.data = new OpenILS.data( { 'session' : params.session } ); obj.OpenILS.data.init(true); + obj.OpenILS.data = new OpenILS.data(); obj.OpenILS.data.init(true); JSAN.use('main.list'); obj.list = new main.list('checkout_list'); diff --git a/Open-ILS/xul/staff_client/server/patron/display.js b/Open-ILS/xul/staff_client/server/patron/display.js index eaa9b46600..dc13eed6ba 100644 --- a/Open-ILS/xul/staff_client/server/patron/display.js +++ b/Open-ILS/xul/staff_client/server/patron/display.js @@ -19,7 +19,7 @@ patron.display.prototype = { obj.barcode = params['barcode']; JSAN.use('OpenILS.data'); this.OpenILS = {}; - obj.OpenILS.data = new OpenILS.data( { 'session' : params.session } ); obj.OpenILS.data.init(true); + obj.OpenILS.data = new OpenILS.data(); obj.OpenILS.data.init(true); JSAN.use('util.deck'); obj.deck = new util.deck('patron_deck'); -- 2.43.2