[Koha-patches] [PATCH] (bug #1758) change the position of GetCOinSBiblio()

henridamien.laurent at biblibre.com henridamien.laurent at biblibre.com
Fri Mar 6 11:38:07 CET 2009


From: Nahuel ANGELINETTI <nahuel.angelinetti at biblibre.com>

The last position getting the COinS of a record wasn't possible in all cases.
This patch just get the COinS earlier in the loop.

Signed-off-by: Henri-Damien LAURENT <henridamien.laurent at biblibre.com>
---
 opac/opac-search.pl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/opac/opac-search.pl b/opac/opac-search.pl
index fd3d782..fa26b57 100755
--- a/opac/opac-search.pl
+++ b/opac/opac-search.pl
@@ -432,6 +432,7 @@ for (my $i=0;$i<=@servers;$i++) {
 			}
 		}
 		foreach (@newresults) {
+            		$_->{'coins'} = GetCOinSBiblio($_->{'biblionumber'});
 			my $clean = $_->{isbn} or next;
 			unless (
 				$clean =~ /\b(\d{13})\b/ or
@@ -441,7 +442,6 @@ for (my $i=0;$i<=@servers;$i++) {
 				next;
 			}
 			$_ ->{'clean_isbn'} = $1;
-            $_->{'coins'} = GetCOinSBiblio($_->{'biblionumber'});
 		}
         $total = $total + $results_hashref->{$server}->{"hits"};
         ## If there's just one result, redirect to the detail page
-- 
1.5.6.3




More information about the Koha-patches mailing list