From: Galen Charlton Date: Fri, 10 Nov 2017 21:43:29 +0000 (-0500) Subject: LP#1723498: fix display of count of duplicate patrons X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=7cfa0b1b87f92c834baf6014d209fc36b6fe3fec;p=evergreen%2Fjoelewis.git LP#1723498: fix display of count of duplicate patrons This patch fixes an issue where the patron registration form's alert for duplicate phone numbers did not display the count of matching records. (This was caused by code that was expecting a string to be passed by reference when it's passed by value in JavaScript). Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/templates/staff/circ/patron/t_edit.tt2 b/Open-ILS/src/templates/staff/circ/patron/t_edit.tt2 index ce365abe5a..f93fbfac64 100644 --- a/Open-ILS/src/templates/staff/circ/patron/t_edit.tt2 +++ b/Open-ILS/src/templates/staff/circ/patron/t_edit.tt2 @@ -45,19 +45,19 @@ [% l('[_1] patron(s) with same phone', - '{{dupe_counts.phone}}') %] + '{{dupe_counts.day_phone}}') %]