From 3521463967ddd86775dc713f452825c3bfb44ed3 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 --- 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.11.0