|
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 |
- |
|
|