From ce3a19d5834a2df62aa3d1793c6eaf9056db9d31 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 b557a95..de5d410 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