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

(-)a/circ/circulation.pl (-2 / +7 lines)
Lines 422-432 if (@$barcodes) { Link Here
422
422
423
    if ($question->{RESERVE_WAITING} or $question->{RESERVED}){
423
    if ($question->{RESERVE_WAITING} or $question->{RESERVED}){
424
        $template->param(
424
        $template->param(
425
            reserveborrowernumber => $question->{'resborrowernumber'},
425
            reserveborrowernumber => $question->{'resborrowernumber'}
426
            itembiblionumber => $getmessageiteminfo->{'biblionumber'}
427
        );
426
        );
428
    }
427
    }
429
428
429
    $template->param(
430
        itembiblionumber => $getmessageiteminfo->{'biblionumber'}
431
    );
432
433
434
430
    $template_params->{issuecount} = $issue;
435
    $template_params->{issuecount} = $issue;
431
436
432
    if ( $iteminfo ) {
437
    if ( $iteminfo ) {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-1 / +5 lines)
Lines 408-413 $(document).ready(function() { Link Here
408
    [% END %]
408
    [% END %]
409
</form>
409
</form>
410
410
411
[% IF ( RESERVED || ISSUED_TO_ANOTHER ) && (CAN_user_reserveforothers_place_holds ) %]
412
    [% UNLESS flagged && noissues %]
413
        <div class="circ-checkoutplacehold"><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% itembiblionumber %]&borrowernumber=[% borrowernumber %]">Click here to place a hold for [% INCLUDE 'patron-title.inc' %]</a></div>
414
    [% END %]
415
[% END %]
411
</div></div>
416
</div></div>
412
[% END %] <!-- NEEDSCONFIRMATION -->
417
[% END %] <!-- NEEDSCONFIRMATION -->
413
418
414
- 

Return to bug 1983