Bugzilla – Attachment 8859 Details for
Bug 7894
Broken detail page for first link on page 2 from search result page in OPAC
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
bug 7894: crude fix: convert results array into an arrayref
bug-7894-crude-fix-convert-results-array-into-an-a.patch (text/plain), 1.12 KB, created by
MJ Ray (software.coop)
on 2012-04-04 09:25:41 UTC
(
hide
)
Description:
bug 7894: crude fix: convert results array into an arrayref
Filename:
MIME Type:
Creator:
MJ Ray (software.coop)
Created:
2012-04-04 09:25:41 UTC
Size:
1.12 KB
patch
obsolete
>From 93f8427ce41aa64fc9ed663ed2c3ade9681f0ae3 Mon Sep 17 00:00:00 2001 >From: MJ Ray <mjr@phonecoop.coop> >Date: Wed, 4 Apr 2012 10:23:06 +0100 >Subject: [PATCH] bug 7894: crude fix: convert results array into an arrayref > >--- > opac/opac-detail.pl | 3 ++- > 1 files changed, 2 insertions(+), 1 deletions(-) > >diff --git a/opac/opac-detail.pl b/opac/opac-detail.pl >index a00e976..796f3b0 100755 >--- a/opac/opac-detail.pl >+++ b/opac/opac-detail.pl >@@ -148,7 +148,8 @@ if ($session->param('busc')) { > for (my $i=0;$i<@servers;$i++) { > my $server = $servers[$i]; > $hits = $results_hashref->{$server}->{"hits"}; >- @newresults = searchResults('opac', '', $hits, $results_per_page, $offset, $arrParamsBusc->{'scan'}, @{$results_hashref->{$server}->{"RECORDS"}},, C4::Context->preference('hidelostitems')); >+ my @records = $results_hashref->{$server}->{"RECORDS"}; >+ @newresults = searchResults('opac', '', $hits, $results_per_page, $offset, $arrParamsBusc->{'scan'}, \@records,, C4::Context->preference('hidelostitems')); > } > return \@newresults; > }#searchAgain >-- >1.7.2.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 7894
:
8859
|
8889
|
8890