From 5ecf36f5420cbb2eb034bd0cc776f7ece1eb5970 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 9 Aug 2021 11:43:32 +0000 Subject: [PATCH] Bug 10902: (follow-up) Fix patron search autocomplete The circulation search autocomplete (e.g. from circulation.pl search header) was corrected in the previous patch to include library name instead of branchcode. This patch makes the same correction for patron search autocomplete (e.g. from members-home.pl search header). Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart --- koha-tmpl/intranet-tmpl/prog/en/includes/js_includes.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/js_includes.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/js_includes.inc index 3246c8de71..4a01bc38b3 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/js_includes.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/js_includes.inc @@ -157,7 +157,7 @@ + ( item.zipcode ? item.zipcode.escapeHtml() : "" ) + " " + ( item.country ? item.country.escapeHtml() : "" ) + " " + "" - + ( item.branchcode ? item.branchcode.escapeHtml() : "" ) + + ( item.branchname ? item.branchname.escapeHtml() : "" ) + "" + "" + "" ) -- 2.20.1