JBAS-638 Increase TPAC copy limit to 50 items
authorBradley Bonner <bbonner@kcls.org>
Fri, 8 May 2015 20:54:36 +0000 (13:54 -0700)
committerBill Erickson <berickxx@gmail.com>
Thu, 21 Mar 2019 19:46:23 +0000 (15:46 -0400)
Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Record.pm

index c071c24..c61205d 100644 (file)
@@ -40,7 +40,7 @@ sub load_record {
     $copy_depth = $depth unless defined $copy_depth; # can be 0
     $self->ctx->{copy_depth} = $copy_depth;
 
-    my $copy_limit = int($self->cgi->param('copy_limit') || 10);
+    my $copy_limit = int($self->cgi->param('copy_limit') || 50);
     my $copy_offset = int($self->cgi->param('copy_offset') || 0);
 
     $self->get_staff_search_settings;