@@ -, +, @@ search results to patron name - Perform a search by name for a patron which will return multiple search results. - Confirm that the results are sorted by patron name. - Locate and place a hold on a title. - When prompted to select a patron to place the hold for, perform a search by name which will return multiple results. - Confirm that the results are sorted by patron name. --- koha-tmpl/intranet-tmpl/prog/en/includes/circ-patron-search-results.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-patron-search-results.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-patron-search-results.inc @@ -4,7 +4,7 @@ window.document.location = $(this).data('url'); }); var table = $("#table_borrowers").dataTable($.extend(true, {}, dataTablesDefaults, { - "aaSorting": [ 1, "asc" ], + "aaSorting": [ 0, "asc" ], "sDom": "t", "iDisplayLength": -1 })); --