Bug 8772 - Uninitialized variable triggers error log entry in smart_rules.pl
authorMark Tompsett <mtompset@hotmail.com>
Tue, 18 Sep 2012 16:05:24 +0000 (00:05 +0800)
committerPaul Poulain <paul.poulain@biblibre.com>
Tue, 9 Oct 2012 09:52:07 +0000 (11:52 +0200)
commit3779dcd0856d4ae7f71fd867fa4979154369a393
tree950676d6c2a793e24212a6708eb188bcbce48247
parent56553964a66e5013591a8014e6c99555ffbd61e2
Bug 8772 - Uninitialized variable triggers error log entry in smart_rules.pl

Changed declartion from:
  my $op = $input->param('op');
to
  my $op = $input->param('op') || q{};
in order to give an empty string default preventing error
logs from filling needlessly.

Signed-off-by: Marc Veron <veron@veron.ch>

The patch removes warnings like:
Use of uninitialized value $op in string eq at...

However there is one more warning, but it is not related to $op (addressed by this patch):
smart-rules.pl: Use of uninitialized value in string ne at .../admin/smart-rules.pl line 388.

Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
admin/smart-rules.pl