From 38afbfc60b0221766e60a2b90ab4318a592eab57 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 20 Jan 2021 15:37:50 +0100 Subject: [PATCH] Bug 27363: (bug 17515 follow-up) Restore temporary selection of Z39.50 targets throughout multiple searches Not sure it will fix the problem (not sure I recreated the problem correctly). So this patch is just a guess, it seems that commit 17571f824d391989247465c7ae18c92c744464c2 Bug 17515: Order Z3950 server by rank and preserve ordering forgot to update two occurrences of server.name with server.servername --- koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc index 9089af4192..2473ea8b8f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc @@ -408,7 +408,7 @@ require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr function showAdvancedSearch() { $('#advanced-search-servers').empty(); $.each( z3950Servers, function( index, server ) { - $('#advanced-search-servers').append( '
  • ' ); + $('#advanced-search-servers').append( '
  • ' ); } ); $('#advanced-search-ui').modal('show'); } @@ -470,7 +470,7 @@ require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr num_fetched += '+'; } - $('#search-serversinfo').append( '
  • ' ); + $('#search-serversinfo').append( '
  • ' ); } ); var seenColumns = {}; -- 2.20.1