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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-1 / +1 lines)
Lines 487-493 No patron matched <span class="ex">[% message %]</span> Link Here
487
[% END %]
487
[% END %]
488
488
489
489
490
[% IF ( selectborrower ) %]
490
[% IF ( borrowers ) %]
491
[% INCLUDE 'patron-toolbar.inc' %]
491
[% INCLUDE 'patron-toolbar.inc' %]
492
492
493
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform" autocomplete="off">
493
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform" autocomplete="off">
(-)a/reserve/request.pl (-2 / +1 lines)
Lines 116-122 if ($findborrower) { Link Here
116
        );
116
        );
117
        my $borrowers = $results->{patrons};
117
        my $borrowers = $results->{patrons};
118
        if ( scalar @$borrowers == 1 ) {
118
        if ( scalar @$borrowers == 1 ) {
119
            $borrowernumber_hold = $borrower->[0]->{borrowernumber};
119
            $borrowernumber_hold = $borrowers->[0]->{borrowernumber};
120
        } elsif ( @$borrowers ) {
120
        } elsif ( @$borrowers ) {
121
            $template->param( borrowers => $borrowers );
121
            $template->param( borrowers => $borrowers );
122
        } else {
122
        } else {
123
- 

Return to bug 13894