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 <nick@bywatersolutions.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Brendan Gallagher brendan@bywatersolutions.com
This commit is contained in:
Jesse Weaver 2016-01-06 13:19:10 -07:00 committed by Brendan Gallagher
parent 3f6a9330bb
commit f4241d1a49

View file

@ -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')) {