enable/disable pagination in asset manager (#756)

This commit is contained in:
JT Smith 2008-10-10 15:51:44 +00:00
parent a47c5b406d
commit 94f14353f4
3 changed files with 3 additions and 2 deletions

View file

@ -104,7 +104,7 @@ sub getManagerPaginator {
;
my $recordOffset = $session->form->get( 'recordOffset' ) || 1;
my $rowsPerPage = $session->form->get( 'rowsPerPage' ) || 25;
my $rowsPerPage = $session->form->get( 'rowsPerPage' ) || 100;
my $currentPage = int ( $recordOffset / $rowsPerPage ) + 1;
my $p = WebGUI::Paginator->new( $session, '', $rowsPerPage, 'pn', $currentPage );