Bug 15416: Warns on guided_reports.pl
authorAleisha <aleishaamohia@hotmail.com>
Mon, 18 Jan 2016 03:30:44 +0000 (03:30 +0000)
committerBrendan Gallagher <brendan@bywatersolutions.com>
Wed, 24 Feb 2016 03:03:26 +0000 (03:03 +0000)
commit17c7c685f12dd09186d369f84cc725984328c5fa
tree286e92b0f4d1fb629e2f29fc04816de3bc01a0f0
parentfdd66bc830e8974be67ca43379e4ae3156b0e9cb
Bug 15416: Warns on guided_reports.pl

Initialising $phase variable to be '' if not defined.

To test:
1) Go to Reports -> Guided Reports Wizard
2) Notice warns
3) Apply patch
4) Refresh page
5) Confirm warns are gone and page still works as it should

Signed-off-by: Hector Castro <hector.hecaxmmx@gmail.com>
Warns are gone. Page still works as expected

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Amended patch:
-my $phase = $input->param('phase');
-$phase //= '';
+my $phase = $input->param('phase') // '';

Signed-off-by: Brendan Gallagher brendan@bywatersolutions.com
reports/guided_reports.pl