From 336f5b49702e2e789c4c8c7c048b6de232697a6a Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Wed, 13 Mar 2019 11:16:09 +0000 Subject: [PATCH] Bug 10577: (QA follow-up) Remove bad call signature Whilst working through this patch for signoff I found a case where the calling signature of GetBudgetPeriod was incorrect. I removed the superflous passed parameter in this followup Signed-off-by: Martin Renvoize Signed-off-by: Josef Moravec --- admin/aqbudgetperiods.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/aqbudgetperiods.pl b/admin/aqbudgetperiods.pl index 0a05a5539b..aa2998d91a 100755 --- a/admin/aqbudgetperiods.pl +++ b/admin/aqbudgetperiods.pl @@ -159,7 +159,7 @@ elsif ( $op eq 'delete_confirmed' ) { # display the form for duplicating elsif ( $op eq 'duplicate_form'){ - my $budgetperiod = GetBudgetPeriod($budget_period_id, $input); + my $budgetperiod = GetBudgetPeriod($budget_period_id); $template->param( 'duplicate_form' => '1', 'budget_period_id' => $budget_period_id, -- 2.11.0