From f3f4dd44d950b3d312ec39281055683b4f498e7e Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 18 Sep 2014 12:25:26 +0200 Subject: [PATCH] Bug 12955: The "show my funds only" should be take into account The "Show my funds only" is not take into account if the checkbox is not checked. So there is no way to show all funds. This has been introduced by bug 11578. The default is not "only mine". The default is "show all funds". Test plan: - 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(-) diff --git a/admin/aqbudgets.pl b/admin/aqbudgets.pl index 1a66c9c..a51a724 100755 --- a/admin/aqbudgets.pl +++ b/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'} -- 2.1.0