@@ -, +, @@ - Go to tools > patron lists - The paging for the 'list of lists' is broken - Select a patron list 'Add more patrons' - Notice the paging on this page is also broken - Apply patch - Verify both pages now display the paging correctly --- koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/list.tt | 3 ++- koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/lists.tt | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/list.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/list.tt @@ -17,7 +17,8 @@ $(document).ready(function() { ], "aoColumnDefs": [ { "aTargets": [ 0 ], "bSortable": false, "bSearchable": false }, - ] + ], + "sPaginationType": "four_button" } )); $( "#find_patron" ).autocomplete({ --- a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/lists.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/lists.tt @@ -11,7 +11,8 @@ $('#patron-lists-table').dataTable($.extend(true, {}, dataTablesDefaults, { "aoColumnDefs": [ { "aTargets": [ -1, -2, -3 ], "bSortable": false, "bSearchable": false }, - ] + ], + "sPaginationType": "four_button" } )); }); --