@@ -, +, @@ - From the toolbar, click Print -> Print summary. - On the acount summary page, confirm that the "Items checked out" and "Pending holds" tables show ALL entries, not just the first 20. --- .../prog/en/modules/members/moremember-print.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt @@ -225,7 +225,7 @@ KohaTable("print-summary-checkouts", { "dom": "Bt", - "paging": "false", + "paging": false, initComplete: function( settings) { moveColumnsButton( settings.nTable.id ); } @@ -233,7 +233,7 @@ KohaTable("print-summary-holds", { "dom": "Bt", - "paging": "false", + "paging": false, initComplete: function( settings) { moveColumnsButton( settings.nTable.id ); } @@ -241,7 +241,7 @@ KohaTable("print-summary-fines", { "dom": "Bt", - "paging": "false", + "paging": false, initComplete: function( settings) { moveColumnsButton( settings.nTable.id ); } --