| Summary: | Funds filter does not remember library choice | ||
|---|---|---|---|
| Product: | Koha | Reporter: | Owen Leonard <oleonard> | 
| Component: | Acquisitions | Assignee: | Owen Leonard <oleonard> | 
| Status: | CLOSED FIXED | QA Contact: | Bugs List <koha-bugs> | 
| Severity: | normal | ||
| Priority: | PATCH-Sent (DO NOT USE) | CC: | chris, mark.gavillet, paul.poulain, srdjan | 
| Version: | Main | ||
| Hardware: | All | ||
| OS: | All | ||
| GIT URL: | Initiative type: | --- | |
| Sponsorship status: | --- | Crowdfunding goal: | 0 | 
| Patch complexity: | --- | Documentation contact: | |
| Documentation submission: | Text to go in the release notes: | ||
| Version(s) released in: | Circulation function: | ||
| Attachments: | 
              Proposed fix
               patch signed-off  | 
      ||
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  | 
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');