@@ -, +, @@ history' page - Search for a record with items that have been checked out in the past - From the detail page, open the 'checkout history' tab - Check paging displays correctly with this patch and is broken without --- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt @@ -10,7 +10,8 @@ $(document).ready(function() { "aoColumns": [ null,null,null,null,{ "sType": "title-string" },{ "sType": "title-string" },{ "sType": "title-string" } ], - "aaSorting": [[ 4, "desc" ]] + "aaSorting": [[ 4, "desc" ]], + "sPaginationType": "full_numbers" }) ); }); --