From fa3d951cc084b3c00cea2141ab0b58729d229915 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 13 Nov 2015 09:17:49 +0000 Subject: [PATCH] Bug 15109 - Regression in patron search results ordering In Koha 3.16 or earlier, before the introduction of the ajax datatable for patron searching, the search results were ordered by name. In master, the results are currently ordered by cardnumber, which is not very useful. Test Plan: 1) Do a "browse by last name" or a patron search 2) Note the results are sorted by card number 3) Apply this patch 4) Reload the page, start a new search 5) Note the results are sorted by name Signed-off-by: Nicole Engard --- koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt index 603920b..49971b7 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt @@ -222,9 +222,9 @@ $(document).ready(function() { 'bFilter': false, 'bAutoWidth': false, [% IF CAN_user_tools_manage_patron_lists %] - 'aaSorting': [[1, 'asc']], + 'aaSorting': [[2, 'asc']], [% ELSE %] - 'aaSorting': [[0, 'asc']], + 'aaSorting': [[1, 'asc']], [% END %] "aLengthMenu": [aLengthMenu, aLengthMenuLabel], 'sPaginationType': 'full_numbers', -- 1.7.10.4