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

(-)a/members/member-password.pl (-3 / +1 lines)
Lines 101-108 if (C4::Context->preference('ExtendedPatronAttributes')) { Link Here
101
}
101
}
102
102
103
# Computes full borrower address
103
# Computes full borrower address
104
my $roadtype = C4::Koha::GetAuthorisedValueByCode( 'ROADTYPE', $bor->{streettype} );
104
my $roadtype = C4::Koha::GetAuthorisedValueByCode( 'ROADTYPE', $bor->{streettype} ) // '';
105
$roadtype //= '';
106
my $address = $bor->{'streetnumber'} . " $roadtype " . $bor->{'address'};
105
my $address = $bor->{'streetnumber'} . " $roadtype " . $bor->{'address'};
107
106
108
    $template->param( othernames => $bor->{'othernames'},
107
    $template->param( othernames => $bor->{'othernames'},
109
- 

Return to bug 14484