From c87d248a028bb8f6d0722a87b8ef165b9a130e7d Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Fri, 10 Nov 2017 16:43:29 -0500 Subject: [PATCH] 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 --- Open-ILS/src/templates/staff/circ/patron/t_edit.tt2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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}}') %]