@@ -, +, @@ account - Create fund where you are the owner and others where you are not. - Go on the fund list view and verify the checkbox "show my funds only" is take into account. --- admin/aqbudgets.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/admin/aqbudgets.pl +++ a/admin/aqbudgets.pl @@ -59,7 +59,7 @@ $template->param( symbol => $cur->{symbol}, my $op = $input->param('op') || 'list'; # see if the user want to see all budgets or only owned ones by default -my $show_mine = $input->param('show_mine') // 1; +my $show_mine = $input->param('show_mine') // 0; # IF USER DOESNT HAVE PERM FOR AN 'ADD', THEN REDIRECT TO THE DEFAULT VIEW... if (not defined $template->{VARS}->{'CAN_user_acquisition_budget_add_del'} --