[open-ils-commits] r13743 - trunk/Open-ILS/xul/staff_client/server/patron (phasefx)

svn at svn.open-ils.org svn at svn.open-ils.org
Mon Jul 27 15:15:54 EDT 2009


Author: phasefx
Date: 2009-07-27 15:15:49 -0400 (Mon, 27 Jul 2009)
New Revision: 13743

Modified:
   trunk/Open-ILS/xul/staff_client/server/patron/hold_notices.xul
Log:
minor bug fix; we're testing the value here for whether it's suitable for display or not, not the existence of the field itself

Modified: trunk/Open-ILS/xul/staff_client/server/patron/hold_notices.xul
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/patron/hold_notices.xul	2009-07-27 18:57:46 UTC (rev 13742)
+++ trunk/Open-ILS/xul/staff_client/server/patron/hold_notices.xul	2009-07-27 19:15:49 UTC (rev 13743)
@@ -183,7 +183,7 @@
                         );
                     }
 				);
-				apply(node,'method',g.notifications[i].method ? g.notifications[i].method() : '');
+				apply(node,'method',g.notifications[i].method() ? g.notifications[i].method() : '');
 				apply(node,'note',g.notifications[i].note() ? g.notifications[i].note() : '');
 				apply(node,'notify_time',g.notifications[i].notify_time() ? g.notifications[i].notify_time().toString().substr(0,10) : '');
 			}



More information about the open-ils-commits mailing list