[open-ils-commits] r14986 - branches/rel_1_4/Open-ILS/xul/staff_client/server/circ (phasefx)

svn at svn.open-ils.org svn at svn.open-ils.org
Thu Nov 19 22:10:05 EST 2009


Author: phasefx
Date: 2009-11-19 22:10:03 -0500 (Thu, 19 Nov 2009)
New Revision: 14986

Modified:
   branches/rel_1_4/Open-ILS/xul/staff_client/server/circ/in_house_use.js
Log:
missed this hard-coded value

Modified: branches/rel_1_4/Open-ILS/xul/staff_client/server/circ/in_house_use.js
===================================================================
--- branches/rel_1_4/Open-ILS/xul/staff_client/server/circ/in_house_use.js	2009-11-20 03:09:13 UTC (rev 14985)
+++ branches/rel_1_4/Open-ILS/xul/staff_client/server/circ/in_house_use.js	2009-11-20 03:10:03 UTC (rev 14986)
@@ -139,7 +139,7 @@
 								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);
 									}



More information about the open-ils-commits mailing list