From 8edde74c52becf40e0490ebdef658abf754a3707 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 f4a744561d..12b905e625 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}}') %]