From 6fac0b7183683ed6a0d3dc05e565546e5ddd9b5b Mon Sep 17 00:00:00 2001 From: Jesse Weaver Date: Wed, 6 Jan 2016 13:19:10 -0700 Subject: [PATCH] Bug 15813: Fix list-context call to ...->guarantor in opac-memberentry.pl (was: Bug 14658: (followup) fix issue with list context on DBIC call) While working on bug 14659, it was discovered that the call to ...->guarantor in list context will cause the hash to be misaligned if there is no guarantor. Signed-off-by: Nick Clemens --- opac/opac-memberentry.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opac/opac-memberentry.pl b/opac/opac-memberentry.pl index 667f201..32da430 100755 --- a/opac/opac-memberentry.pl +++ b/opac/opac-memberentry.pl @@ -227,7 +227,7 @@ elsif ( $action eq 'edit' ) { #Display logged in borrower's data $template->param( borrower => $borrower, - guarantor => Koha::Borrowers->find($borrowernumber)->guarantor(), + guarantor => scalar Koha::Borrowers->find($borrowernumber)->guarantor(), ); if (C4::Context->preference('OPACpatronimages')) { -- 2.6.2