From: phasefx Date: Thu, 15 Dec 2005 14:48:57 +0000 (+0000) Subject: checking wrong "namespace" X-Git-Url: https://git.evergreen-ils.org/?p=Evergreen.git;a=commitdiff_plain;h=c5a94c2a7491ddb023aa7c27d0527b2a5c47d18a checking wrong "namespace" git-svn-id: svn://svn.open-ils.org/ILS/trunk@2397 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- 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();