From d4bb564611941a3d724d50df97ad2b2850220107 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. Signed-off-by: Hayley Mapley --- members/moremember.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/members/moremember.pl b/members/moremember.pl index 66156114cd..5efd47ec4e 100755 --- a/members/moremember.pl +++ b/members/moremember.pl @@ -132,7 +132,7 @@ if ( $count ) { $totalmount += $guarantee->account->balance; } - $template->param( guarantees => @guarantees); + $template->param( guarantees => \@guarantees); $template->param( amounttot => sprintf("%.2f",$totalmount)); } -- 2.11.0