From 889bf5efedaa78c14697ef423eb6c797ea8d9eb8 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Mon, 19 Nov 2018 14:47:04 +0000 Subject: [PATCH] Bug 21649: Pass guarantee info to template when adding child To test: 1 - Find an adult patron 2 - Click 'Add child' 3 - Note address/phone info does not carry over 4 - Apply patch 5 - Repeat 6 - Note information populates Signed-off-by: Owen Leonard --- members/memberentry.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/members/memberentry.pl b/members/memberentry.pl index 14a1136..731d4f9 100755 --- a/members/memberentry.pl +++ b/members/memberentry.pl @@ -775,7 +775,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 + patron => $patron ? $patron : \%newdata, # Used by address include templates now nodouble => $nodouble, borrowernumber => $borrowernumber, #register number guarantor => $guarantor, -- 2.1.4