@@ -, +, @@ edit patron form -- without this patch the fields for address are blank -- with patch the fields are filled with actual data --- members/memberentry.pl | 1 + 1 file changed, 1 insertion(+) --- a/members/memberentry.pl +++ a/members/memberentry.pl @@ -760,6 +760,7 @@ $template->param( $guarantorid = $borrower_data->{'guarantorid'} || $guarantorid; my $guarantor = $guarantorid ? Koha::Patrons->find( $guarantorid ) : undef; $template->param( + patron => $patron, # Used by address include templates now nodouble => $nodouble, borrowernumber => $borrowernumber, #register number guarantor => $guarantor, --