Lines 170-176
if (C4::Context->preference('ExtendedPatronAttributes')) {
Link Here
|
170 |
|
170 |
|
171 |
# Computes full borrower address |
171 |
# Computes full borrower address |
172 |
my $roadtype = C4::Koha::GetAuthorisedValueByCode( 'ROADTYPE', $bor->{streettype} ); |
172 |
my $roadtype = C4::Koha::GetAuthorisedValueByCode( 'ROADTYPE', $bor->{streettype} ); |
173 |
my $address = $bor->{'streetnumber'} . " $roadtype " . $bor->{'address'}; |
173 |
my $address = $bor->{'streetnumber'} . ' $roadtype ' . $bor->{'address'}; |
174 |
|
174 |
|
175 |
$template->param( |
175 |
$template->param( |
176 |
borrowernumber => $bor->{'borrowernumber'}, |
176 |
borrowernumber => $bor->{'borrowernumber'}, |
177 |
- |
|
|