From: phasefx Date: Mon, 27 Jul 2009 19:15:49 +0000 (+0000) Subject: minor bug fix; we're testing the value here for whether it's suitable for display... X-Git-Tag: sprint4-merge-nov22~9609 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=0313bb8213885f2d926891a01821ff6bcd776e71;p=working%2FEvergreen.git 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 git-svn-id: svn://svn.open-ils.org/ILS/trunk@13743 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/xul/staff_client/server/patron/hold_notices.xul b/Open-ILS/xul/staff_client/server/patron/hold_notices.xul index e115e937f2..6f9ac7254c 100644 --- a/Open-ILS/xul/staff_client/server/patron/hold_notices.xul +++ b/Open-ILS/xul/staff_client/server/patron/hold_notices.xul @@ -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) : ''); }