@@ -, +, @@ - Create a new fund with a name begining with 'z' and set you has owner. - Create a new fund with a name begining with 'a' and set you has owner. - Got to a vendor and click "Receive shipments" - Look at fund combobox --- C4/Budgets.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/C4/Budgets.pm +++ a/C4/Budgets.pm @@ -709,7 +709,8 @@ gets all budgets # ------------------------------------------------------------------- sub GetBudgets { - my ($filters,$orderby) = @_; + my $filters = shift; + my $orderby = shift || 'budget_name'; return SearchInTable("aqbudgets",$filters, $orderby, undef,undef, undef, "wide"); } --