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

(-)a/opac/opac-reserve.pl (-11 lines)
Lines 555-572 if ( $numBibsAvailable == 0 || $anyholdable == 0) { Link Here
555
    $template->param( none_available => 1 );
555
    $template->param( none_available => 1 );
556
}
556
}
557
557
558
my $itemTableColspan = 9;
559
if (! $template->{VARS}->{'OPACItemHolds'}) {
560
    $itemTableColspan--;
561
}
562
if (! $template->{VARS}->{'singleBranchMode'}) {
563
    $itemTableColspan--;
564
}
565
$itemTableColspan-- if !$show_holds_count && !$show_priority;
566
my $show_notes=C4::Context->preference('OpacHoldNotes');
558
my $show_notes=C4::Context->preference('OpacHoldNotes');
567
$template->param(OpacHoldNotes=>$show_notes);
559
$template->param(OpacHoldNotes=>$show_notes);
568
$itemTableColspan-- if !$show_notes;
569
$template->param(itemtable_colspan => $itemTableColspan);
570
560
571
# display infos
561
# display infos
572
$template->param(bibitemloop => $biblioLoop);
562
$template->param(bibitemloop => $biblioLoop);
573
- 

Return to bug 10433