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 407-412 $(document).ready(function() { Link Here
407
    [% END %]
407
    [% END %]
408
</form>
408
</form>
409
409
410
[% IF ( RESERVE_WAITING ) || ( RESERVED ) || ( ISSUED_TO_ANOTHER ) %]
411
    [%IF (CAN_user_reserveforothers_place_holds ) %]
412
        <span class="circ-checkoutplacehold"><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% itembiblionumber %]&findborrower=x">Click here to place hold</a></span>
413
    [% END %]
414
[% END %]
410
</div></div>
415
</div></div>
411
[% END %] <!-- NEEDSCONFIRMATION -->
416
[% END %] <!-- NEEDSCONFIRMATION -->
412
417
413
- 

Return to bug 1983