From c51649962ac4753321ef4009be44a4443189d98a 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. Signed-off-by: Brendan Gallagher --- admin/aqbudgets.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/aqbudgets.pl b/admin/aqbudgets.pl index 7d97450..6175d9c 100755 --- a/admin/aqbudgets.pl +++ b/admin/aqbudgets.pl @@ -58,7 +58,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'} -- 1.7.10.4