From 32ae3f6048d47efd733d3ee4a0811f20a3d11a9e Mon Sep 17 00:00:00 2001 From: Luke Honiss Date: Thu, 19 Jan 2017 22:52:49 +0000 Subject: [PATCH] Bug 17945 - Breadcrumbs broken on opac-serial-issues.pl ==TEST PLAN== 1) Make a subscription with a record 2) Search and view the record in OPAC 3) Click on the subscription tab and click more details 4) The breadcrumb will say 'Detals for' without the record name 5) Apply patch 6) Refresh the page 7) The breadcrumb will display the name of the record (fixed small error) Signed-off-by: Sonia BOUIS Signed-off-by: Nick Clemens --- opac/opac-serial-issues.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/opac/opac-serial-issues.pl b/opac/opac-serial-issues.pl index 11928bd..5b807ea 100755 --- a/opac/opac-serial-issues.pl +++ b/opac/opac-serial-issues.pl @@ -29,7 +29,6 @@ use C4::Letters; use C4::Output; use C4::Context; - my $query = new CGI; my $op = $query->param('op'); my $dbh = C4::Context->dbh; @@ -73,7 +72,6 @@ if ( $selectview eq "full" ) { my $yearmin = $subscriptions->[0]->{year}; my $yearmax = $subscriptions->[ -1 ]->{year}; - # replace CR by
in librarian note # $subscription->{opacnote} =~ s/\n/\/g; @@ -113,9 +111,12 @@ else { # replace CR by
in librarian note # $subscription->{opacnote} =~ s/\n/\/g; + my $title = $subscriptions->[0]->{bibliotitle}; + $template->param( biblionumber => scalar $query->param('biblionumber'), subscription_LOOP => $subscriptions, + bibliotitle => $title, ); } output_html_with_http_headers $query, $cookie, $template->output; -- 2.1.4