Bugzilla – Attachment 73022 Details for
Bug 19564
Fix extraction of sort order from sort condition name
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19564: Fix extraction of sort order from sort condition name
Bug-19564-Fix-extraction-of-sort-order-from-sort-c.patch (text/plain), 1.14 KB, created by
Nicolas Legrand
on 2018-03-16 11:25:59 UTC
(
hide
)
Description:
Bug 19564: Fix extraction of sort order from sort condition name
Filename:
MIME Type:
Creator:
Nicolas Legrand
Created:
2018-03-16 11:25:59 UTC
Size:
1.14 KB
patch
obsolete
>From 5b125d4b900fb13f34ce32caab738b443ea89458 Mon Sep 17 00:00:00 2001 >From: David Gustafsson <david.gustafsson@ub.gu.se> >Date: Thu, 2 Nov 2017 15:02:23 +0100 >Subject: [PATCH] Bug 19564: Fix extraction of sort order from sort condition > name > >Currently sort order is extracted from sort condition by splitting the >field, instead use regular expression to extract the last part preceded >by underscore. > >Signed-off-by: Nicolas Legrand <nicolas.legrand@bulac.fr> >--- > Koha/SearchEngine/Elasticsearch/QueryBuilder.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm b/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm >index 95cc86a..a930510 100644 >--- a/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm >+++ b/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm >@@ -490,7 +490,7 @@ sub _convert_sort_fields { > > # Convert the fields and orders, drop anything we don't know about. > grep { $_->{field} } map { >- my ( $f, $d ) = split /_/; >+ my ( $f, $d ) = /(.+)_(.+)/; > { > field => $sort_field_convert{$f}, > direction => $sort_order_convert{$d} >-- >2.1.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 19564
:
68892
|
68998
|
70137
|
73022
|
73023
|
73385
|
73386
|
73387