@@ -, +, @@ in acqui/histsearch.pl --- acqui/histsearch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/acqui/histsearch.pl +++ a/acqui/histsearch.pl @@ -124,7 +124,7 @@ if ($do_search) { my $budgetperiods = C4::Budgets::GetBudgetPeriods; my $bp_loop = $budgetperiods; for my $bp ( @{$budgetperiods} ) { - my $hierarchy = C4::Budgets::GetBudgetHierarchy( $$bp{budget_period_id} ); + my $hierarchy = C4::Budgets::GetBudgetHierarchy( $$bp{budget_period_id}, undef, undef, 1 ); for my $budget ( @{$hierarchy} ) { $$budget{budget_display_name} = sprintf("%s", ">" x $$budget{depth} . $$budget{budget_name}); } --