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

(-)a/members/member-flags.pl (-1 / +1 lines)
Lines 173-178 if (C4::Context->preference('ExtendedPatronAttributes')) { Link Here
173
173
174
# Computes full borrower address
174
# Computes full borrower address
175
my $roadtype = C4::Koha::GetAuthorisedValueByCode( 'ROADTYPE', $bor->{streettype} );
175
my $roadtype = C4::Koha::GetAuthorisedValueByCode( 'ROADTYPE', $bor->{streettype} );
176
$roadtype //= '';
176
my $address = $bor->{'streetnumber'} . " $roadtype " . $bor->{'address'};
177
my $address = $bor->{'streetnumber'} . " $roadtype " . $bor->{'address'};
177
178
178
$template->param(
179
$template->param(
179
- 

Return to bug 14481