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

(-)a/members/member-password.pl (-2 / +1 lines)
Lines 101-107 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
my $address = $bor->{'streetnumber'} . " $roadtype " . $bor->{'address'};
105
my $address = $bor->{'streetnumber'} . " $roadtype " . $bor->{'address'};
106
106
107
    $template->param( othernames => $bor->{'othernames'},
107
    $template->param( othernames => $bor->{'othernames'},
108
- 

Return to bug 14484