From 18367e3f69a7dc73e53d52a5111d6c535f6313af Mon Sep 17 00:00:00 2001 From: Maryse Simard Date: Wed, 13 Feb 2019 17:09:17 -0500 Subject: [PATCH] Bug 12446: (follow-up) Show all guarantees on the guarantor detail page Only one guarantee is shown on the guarantor detail page. The guarantees list should be passed to the template as a ref. --- members/moremember.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/members/moremember.pl b/members/moremember.pl index c104bf8..d6529cf 100755 --- a/members/moremember.pl +++ b/members/moremember.pl @@ -194,7 +194,7 @@ if ( $count ) { $totalmount += $guarantee->account->balance; } - $template->param( guarantees => @guarantees); + $template->param( guarantees => \@guarantees); $template->param( amounttot => sprintf("%.2f",$totalmount)); } -- 2.7.4