From 93ea9b6eb72923a215a65bc67f9ef023617aa863 Mon Sep 17 00:00:00 2001 From: Nahuel ANGELINETTI Date: Thu, 12 Feb 2009 15:38:52 +0100 Subject: [PATCH] (bug #2956) fix 4xx plugin pagination this patch rework the calculation of the pagination and of results --- cataloguing/value_builder/unimarc_field_4XX.pl | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/cataloguing/value_builder/unimarc_field_4XX.pl b/cataloguing/value_builder/unimarc_field_4XX.pl index 314860173b..4cdc4ec94c 100755 --- a/cataloguing/value_builder/unimarc_field_4XX.pl +++ b/cataloguing/value_builder/unimarc_field_4XX.pl @@ -349,17 +349,15 @@ sub plugin { # multi page display gestion my $displaynext = 0; my $displayprev = $startfrom; - if ( ( $total - ( ( $startfrom + 1 ) * ($resultsperpage) ) ) > 0 ) { + + if( ( $total_hits - ( ( $startfrom + 1 ) * ($resultsperpage) ) ) > 0 ) { $displaynext = 1; } my @arrayresults; my @field_data = ($search); for ( - my $i = $startfrom * $resultsperpage ; - $i < (( $startfrom * $resultsperpage + $resultsperpage < scalar(@$results)) - ? $startfrom * $resultsperpage + $resultsperpage - : scalar(@$results) - ) ; + my $i = 0 ; + $i < $resultsperpage ; $i++ ) { @@ -444,7 +442,7 @@ sub plugin { startfromnext => $startfrom + 1, startfromprev => $startfrom - 1, searchdata => \@field_data, - total => $total, + total => $total_hits, from => $from, to => $to, numbers => \@numbers, -- 2.20.1