If you filter your funds list by library the filter menu doesn't remember the choice you made by preselecting your branch. This is because the script makes itself forget the parameter before it can be used: 74 my $budget_hash = $input->Vars; ... 79 delete $$budget_hash{$_} foreach grep {/filter|^op$|show/} keys %$budget_hash; 80 my $filter_budgetbranch = $input->param('filter_budgetbranch');
Created attachment 3502 [details] [review] Proposed fix Moving line 80 to before line 79 lets the menu select work correctly.
Created attachment 3612 [details] [review] patch signed-off
Pushed please test
*** Bug 7200 has been marked as a duplicate of this bug. ***