Bugzilla – Attachment 44892 Details for
Bug 15109
Regression in patron search results ordering
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[PASSED QA] Bug 15109 - Regression in patron search results ordering
PASSED-QA-Bug-15109---Regression-in-patron-search-.patch (text/plain), 1.65 KB, created by
Katrin Fischer
on 2015-11-16 20:19:21 UTC
(
hide
)
Description:
[PASSED QA] Bug 15109 - Regression in patron search results ordering
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2015-11-16 20:19:21 UTC
Size:
1.65 KB
patch
obsolete
>From 7046a3a5bb4d8bf6e2adf48de535488fb44cf980 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Fri, 13 Nov 2015 09:17:49 +0000 >Subject: [PATCH] [PASSED QA] 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 <nengard@bywatersolutions.com> > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > 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.9.1
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 15109
:
44288
|
44296
|
44829
|
44830
|
44854
|
44855
| 44892 |
44893