in reply to use warnings => Use of uninitialized value...
which I should change toif ( $some_value =~ /some_thing_here/ ) { .... }
if ( defined $some_value && $some_value =~ /some_thing_here/ ) { .... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: use warnings => Use of uninitialized value...
by davorg (Chancellor) on May 24, 2006 at 10:00 UTC | |
|
Re^2: use warnings => Use of uninitialized value...
by gellyfish (Monsignor) on May 24, 2006 at 09:59 UTC |