From: phasefx Date: Fri, 20 Nov 2009 03:09:13 +0000 (+0000) Subject: missed this hard-coded value X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=c6143a8086aa2a9b8795fc5d314bd05587ce67b5;p=Evergreen.git 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 --- 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); }