[Koha-patches] [PATCH 4/4] Bug 11065 Increase size of results list for manage-marc-import page

Doug Kingston dpk at randomnotes.org
Fri Oct 18 00:40:10 CEST 2013


Based on feedback from KohaCon13, the default of 25 biblios per page
is woefully too small.  Make it 500.  500 lines of text is very
reasonable for modern browsers.
---
 tools/manage-marc-import.pl |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/manage-marc-import.pl b/tools/manage-marc-import.pl
index c0584c9..9cb3223 100755
--- a/tools/manage-marc-import.pl
+++ b/tools/manage-marc-import.pl
@@ -47,7 +47,7 @@ my $import_batch_id = $input->param('import_batch_id') || '';
 
 # record list displays
 my $offset = $input->param('offset') || 0;
-my $results_per_page = $input->param('results_per_page') || 25; 
+my $results_per_page = $input->param('results_per_page') || 500; 
 
 my ($template, $loggedinuser, $cookie)
     = get_template_and_user({template_name => "tools/manage-marc-import.tmpl",
-- 
1.7.9.5



More information about the Koha-patches mailing list