@@ -, +, @@ - Make sure that some holds are placed on available items in your installation - Go to the circulation start page - Open the 'holds to pull' report - Verify that the patch fixes the paging on the result table --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt @@ -14,7 +14,8 @@ $(document).ready(function() { { "sType": "anti-the", "aTargets" : [ "anti-the" ] }, { "sType": "title-string", "aTargets" : [ "title-string" ] }, { "sType": "string", "aTargets": [ "string-sort" ] } //Target columns that use
separators and pull-down menus. - ] + ], + "sPaginationType": "full_numbers" })); holdst.fnAddFilters("filter"); [%# add separateData function to cleanse jQuery select lists by breaking apart strings glued with BR tags and then de-duplicating any repeated library codes %] @@ -36,7 +37,7 @@ $(document).ready(function() { [%# add SeparateData function into createSelect function, so that it does the createSelect on clean data %] function createSelect( data ) { data = separateData(data); - var r='', i, len=data.length; for ( i=0 ; i'+data[i]+''; } --