View | Details | Raw Unified | Return to bug 10321
Collapse All | Expand All

(-)a/opac/opac-reserve.pl (-2 / +2 lines)
Lines 548-560 if ( $numBibsAvailable == 0 || $anyholdable == 0) { Link Here
548
    $template->param( none_available => 1 );
548
    $template->param( none_available => 1 );
549
}
549
}
550
550
551
my $itemTableColspan = 8;
551
my $itemTableColspan = 9;
552
if (! $template->{VARS}->{'OPACItemHolds'}) {
552
if (! $template->{VARS}->{'OPACItemHolds'}) {
553
    $itemTableColspan--;
553
    $itemTableColspan--;
554
}
554
}
555
if (! $template->{VARS}->{'singleBranchMode'}) {
555
if (! $template->{VARS}->{'singleBranchMode'}) {
556
    $itemTableColspan--;
556
    $itemTableColspan--;
557
}
557
}
558
$itemTableColspan-- if !$show_holds_count && !$show_priority;
558
my $show_notes=C4::Context->preference('OPACShowHoldNotes');
559
my $show_notes=C4::Context->preference('OPACShowHoldNotes');
559
$template->param(OPACShowHoldNotes=>$show_notes);
560
$template->param(OPACShowHoldNotes=>$show_notes);
560
$itemTableColspan-- if !$show_notes;
561
$itemTableColspan-- if !$show_notes;
561
- 

Return to bug 10321