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

(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-reserve.tt (-1 / +4 lines)
Lines 371-377 Link Here
371
      <a href="#" style="font-size:85%;text-decoration:none;" onclick="document.getElementById('expiration_date_[% bibitemloo.biblionumber %]').value='';return false;">Clear Date</a></p>
371
      <a href="#" style="font-size:85%;text-decoration:none;" onclick="document.getElementById('expiration_date_[% bibitemloo.biblionumber %]').value='';return false;">Clear Date</a></p>
372
    </td>[% END %]
372
    </td>[% END %]
373
373
374
                    [% IF ( bibitemloo.holdable ) %][% IF ( OPACItemHolds ) %]
374
                    [% IF ( bibitemloo.holdable ) %]
375
		    <!-- HOLD ABLE -->
376
		    [% IF ( OPACItemHolds ) %]
377
		    <! -- ITEM HOLDS -->
375
                                          <td class="place_on_type" style="display:none">
378
                                          <td class="place_on_type" style="display:none">
376
                                            <table>
379
                                            <table>
377
                                              <tr>
380
                                              <tr>
(-)a/opac/opac-reserve.pl (-3 / +2 lines)
Lines 478-487 if ( $numBibsAvailable == 0 || !$anyholdable) { Link Here
478
}
478
}
479
479
480
my $itemTableColspan = 5;
480
my $itemTableColspan = 5;
481
if (!$template->param('OPACItemHolds')) {
481
if (! $template->{VARS}->{'OPACItemHolds'}) {
482
    $itemTableColspan--;
482
    $itemTableColspan--;
483
}
483
}
484
if ($template->param('singleBranchMode')) {
484
if (! $template->{VARS}->{'singleBranchMode'}) {
485
    $itemTableColspan--;
485
    $itemTableColspan--;
486
}
486
}
487
$template->param(itemtable_colspan => $itemTableColspan);
487
$template->param(itemtable_colspan => $itemTableColspan);
488
- 

Return to bug 6347