From fdef405cdddcf7456247e7706941aabeb11895ea Mon Sep 17 00:00:00 2001 From: Robin Sheat Date: Fri, 10 Jul 2015 15:19:21 +1200 Subject: [PATCH] Bug 12478: fix capitalisation issue with index names Signed-off-by: Nick Clemens Signed-off-by: Jesse Weaver Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall Signed-off-by: Brendan Gallagher --- Koha/SearchEngine/Elasticsearch/Search.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/SearchEngine/Elasticsearch/Search.pm b/Koha/SearchEngine/Elasticsearch/Search.pm index 07380207ce..1402a79edd 100644 --- a/Koha/SearchEngine/Elasticsearch/Search.pm +++ b/Koha/SearchEngine/Elasticsearch/Search.pm @@ -187,7 +187,7 @@ sub search_auth_compat { # rather than hard-coded conversions. # Our results often come through as nested arrays, to fix this # requires changes in catmandu. - my $authid = $record->{ 'local-number' }[0][0]; + my $authid = $record->{ 'Local-number' }[0][0]; $result{authid} = $authid; # TODO put all this info into the record at index time so we -- 2.39.5