From 570ecd0c50b75bf206a7b3e62548855e84ecef65 Mon Sep 17 00:00:00 2001 From: JT Smith Date: Fri, 13 Jun 2008 16:36:25 +0000 Subject: [PATCH] 15 is too little --- lib/WebGUI/Content/AssetManager.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Content/AssetManager.pm b/lib/WebGUI/Content/AssetManager.pm index e28a8f997..dcecad106 100644 --- a/lib/WebGUI/Content/AssetManager.pm +++ b/lib/WebGUI/Content/AssetManager.pm @@ -104,7 +104,7 @@ sub getManagerPaginator { ; my $recordOffset = $session->form->get( 'recordOffset' ) || 1; - my $rowsPerPage = $session->form->get( 'rowsPerPage' ) || 15; + my $rowsPerPage = $session->form->get( 'rowsPerPage' ) || 25; my $currentPage = int ( $recordOffset / $rowsPerPage ) + 1; my $p = WebGUI::Paginator->new( $session, '', $rowsPerPage, 'pn', $currentPage );