From c6143a8086aa2a9b8795fc5d314bd05587ce67b5 Mon Sep 17 00:00:00 2001 From: phasefx Date: Fri, 20 Nov 2009 03:09:13 +0000 Subject: [PATCH] missed this hard-coded value git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_4_0@14985 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/server/circ/in_house_use.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/xul/staff_client/server/circ/in_house_use.js b/Open-ILS/xul/staff_client/server/circ/in_house_use.js index c24064bba6..00c2d14cd2 100644 --- a/Open-ILS/xul/staff_client/server/circ/in_house_use.js +++ b/Open-ILS/xul/staff_client/server/circ/in_house_use.js @@ -139,7 +139,7 @@ circ.in_house_use.prototype = { try { var value = Number(ev.target.value); if (value > 0) { - if (value > 99) { throw(value); } + if (value > obj.entry_cap) { throw(value); } } else { throw(value); } -- 2.11.0