Summary: | Silence warnings in admin/aqplan.pl | ||
---|---|---|---|
Product: | Koha | Reporter: | Mark Tompsett <mtompset> |
Component: | Acquisitions | Assignee: | Mark Tompsett <mtompset> |
Status: | CLOSED FIXED | QA Contact: | Testopia <testopia> |
Severity: | minor | ||
Priority: | P5 - low | CC: | jonathan.druart, nick |
Version: | unspecified | ||
Hardware: | All | ||
OS: | All | ||
Change sponsored?: | --- | Patch complexity: | --- |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: | |||
Bug Depends on: | 20185 | ||
Bug Blocks: | 26496 | ||
Attachments: |
Bug 20201: Silence warnings triggered by admin/aqplan.pl
Bug 20201: Silence warnings triggered by admin/aqplan.pl |
Description
Mark Tompsett
2018-02-14 20:17:26 UTC
20185 cleans up some of them while addressing perl -wc issues. This cleans up more. Created attachment 71639 [details] [review] Bug 20201: Silence warnings triggered by admin/aqplan.pl TEST PLAN --------- 0) back up DB 1) Run the following commands on a kohadevbox: reset_all git bz apply 20185 echo | sudo tee /var/log/koha/kohadev/plack-error.log restart_all 2) Navigate in a staff client: Home -> Administration -> Budgets -> Edit -> Planning by libraries -- could be any of the planning, but by libraries is nicely visible on screen. 3) Run the following commands: cat /var/log/koha/kohadev/plack-error.log -- several warnings. 4) Run the following commands: git bz apply 20201 echo | sudo tee /var/log/koha/kohadev/plack-error.log restart_all 5) repeat step 2 and refresh the staff client page. -- this time warnings related to aqplan.pl are not there. 6) run koha qa test tools Created attachment 72269 [details] [review] Bug 20201: Silence warnings triggered by admin/aqplan.pl TEST PLAN --------- 0) back up DB 1) Run the following commands on a kohadevbox: reset_all git bz apply 20185 echo | sudo tee /var/log/koha/kohadev/plack-error.log restart_all 2) Navigate in a staff client: Home -> Administration -> Budgets -> Edit -> Planning by libraries -- could be any of the planning, but by libraries is nicely visible on screen. 3) Run the following commands: cat /var/log/koha/kohadev/plack-error.log -- several warnings. 4) Run the following commands: git bz apply 20201 echo | sudo tee /var/log/koha/kohadev/plack-error.log restart_all 5) repeat step 2 and refresh the staff client page. -- this time warnings related to aqplan.pl are not there. 6) run koha qa test tools Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Trivial, skipping QA. Pushed to master for 18.05, thanks to everybody involved! Awesome work all! Pushed to stable for 17.11.04 Comment on attachment 72269 [details] [review] Bug 20201: Silence warnings triggered by admin/aqplan.pl Review of attachment 72269 [details] [review]: ----------------------------------------------------------------- ::: admin/aqplan.pl @@ +106,4 @@ > $authcat = 'Asort1' if not defined $authcat; # defaults to Asort if no authcat given > > my $budget_id = $input->param('budget_id'); > +my $op = $input->param("op") // q{}; This line actually hides a bug introduced by Bug 16754. |