[open-ils-commits] r15171 - trunk/Open-ILS/web/js/dojo/openils/widget (phasefx)
svn at svn.open-ils.org
svn at svn.open-ils.org
Wed Dec 16 01:12:31 EST 2009
Author: phasefx
Date: 2009-12-16 01:12:27 -0500 (Wed, 16 Dec 2009)
New Revision: 15171
Modified:
trunk/Open-ILS/web/js/dojo/openils/widget/AutoFieldWidget.js
Log:
Checkboxes in the patron editor are getting a value of 'on' (a change in dojo?). Bill, check me on this one.
Modified: trunk/Open-ILS/web/js/dojo/openils/widget/AutoFieldWidget.js
===================================================================
--- trunk/Open-ILS/web/js/dojo/openils/widget/AutoFieldWidget.js 2009-12-15 22:27:47 UTC (rev 15170)
+++ trunk/Open-ILS/web/js/dojo/openils/widget/AutoFieldWidget.js 2009-12-16 06:12:27 UTC (rev 15171)
@@ -81,6 +81,7 @@
case 'bool':
switch(value) {
case 'true': return 't';
+ case 'on': return 't';
case 'false' : return 'f';
case 'unset' : return null;
case true : return 't';
More information about the open-ils-commits
mailing list