From e988b5ada31bbbee7200ea5be00ff275b36959f9 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 Signed-off-by: Katrin Fischer Passes tests and QA script. Note: In order to test this make sure you have funds owned by another staff user. Signed-off-by: Tomas Cohen Arazi --- admin/aqbudgets.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/aqbudgets.pl b/admin/aqbudgets.pl index fa914d5917..a7a4dfe20b 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.20.1