From c5a94c2a7491ddb023aa7c27d0527b2a5c47d18a Mon Sep 17 00:00:00 2001 From: phasefx Date: Thu, 15 Dec 2005 14:48:57 +0000 Subject: [PATCH] checking wrong "namespace" git-svn-id: svn://svn.open-ils.org/ILS/trunk@2397 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/server/circ/checkin.js | 2 +- Open-ILS/xul/staff_client/server/circ/checkout.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/xul/staff_client/server/circ/checkin.js b/Open-ILS/xul/staff_client/server/circ/checkin.js index 713569b44e..327f5edaee 100644 --- a/Open-ILS/xul/staff_client/server/circ/checkin.js +++ b/Open-ILS/xul/staff_client/server/circ/checkin.js @@ -1,6 +1,6 @@ dump('entering circ.checkin.js\n'); -if (typeof patron == 'undefined') patron = {}; +if (typeof circ == 'undefined') circ = {}; circ.checkin = function (params) { JSAN.use('util.error'); this.error = new util.error(); diff --git a/Open-ILS/xul/staff_client/server/circ/checkout.js b/Open-ILS/xul/staff_client/server/circ/checkout.js index 1b5d259004..85ae7c0acd 100644 --- a/Open-ILS/xul/staff_client/server/circ/checkout.js +++ b/Open-ILS/xul/staff_client/server/circ/checkout.js @@ -1,6 +1,6 @@ dump('entering circ.checkout.js\n'); -if (typeof patron == 'undefined') patron = {}; +if (typeof circ == 'undefined') circ = {}; circ.checkout = function (params) { JSAN.use('util.error'); this.error = new util.error(); -- 2.43.2