From 389449a482aebe6618bd418b87e21e9db6250303 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 18 Jul 2014 08:55:00 -0400 Subject: [PATCH] Bug 10433 - colspan calculation done by opac/opac-reserve.pl should be moved to template Content-Type: text/plain; charset="utf-8" Since the bootstrap OPAC's place hold interface doesn't use tables there is no use for the colspan calculation being done in the script. This patch removes it. To test, place one or more holds in the OPAC and confirm that there are no display problems. The OPAC error logs should show no associated error. --- opac/opac-reserve.pl | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/opac/opac-reserve.pl b/opac/opac-reserve.pl index 94ff1bd..09eb4da 100755 --- a/opac/opac-reserve.pl +++ b/opac/opac-reserve.pl @@ -555,18 +555,8 @@ if ( $numBibsAvailable == 0 || $anyholdable == 0) { $template->param( none_available => 1 ); } -my $itemTableColspan = 9; -if (! $template->{VARS}->{'OPACItemHolds'}) { - $itemTableColspan--; -} -if (! $template->{VARS}->{'singleBranchMode'}) { - $itemTableColspan--; -} -$itemTableColspan-- if !$show_holds_count && !$show_priority; my $show_notes=C4::Context->preference('OpacHoldNotes'); $template->param(OpacHoldNotes=>$show_notes); -$itemTableColspan-- if !$show_notes; -$template->param(itemtable_colspan => $itemTableColspan); # display infos $template->param(bibitemloop => $biblioLoop); -- 1.7.9.5