From 2a351da533b89e45267f73de054faaa7350996c8 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sun, 22 Feb 2015 11:10:59 +0100 Subject: [PATCH] Bug 13744: Fix datatables paging on 'checkout history' page The paging in the datatable on the 'circulation history' page is broken without this patch. /cgi-bin/koha/catalogue/issuehistory.pl?biblionumber=... To test: - 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(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt index 4cd11ff..50cd561 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt +++ b/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" }) ); }); -- 1.9.1