Commit 913b796
committed
Fix for some uninitialized variables
The following constructs:
`our @isa = $Net::FTP::IOCLASS;`
and
` use base "require $DADA::Config::CAPTCHA_TYPE";`
lead to messages like:
```
Use of uninitialized value $_ in exists at /usr/lib/perl5/site_perl/5.18.2/Doxygen/Filter/Perl.pm line 447.
Use of uninitialized value $inherit in concatenation (.) or string at /usr/lib/perl5/site_perl/5.18.2/Doxygen/Filter/Perl.pm line 587.
Use of uninitialized value $DADA::Config::CAPTCHA_TYPE in concatenation (.) or string at (eval 30) line 1.
```1 parent a86bc66 commit 913b796
1 file changed
+12
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
286 | 286 | | |
287 | 287 | | |
288 | 288 | | |
289 | | - | |
290 | | - | |
| 289 | + | |
| 290 | + | |
| 291 | + | |
| 292 | + | |
| 293 | + | |
| 294 | + | |
291 | 295 | | |
292 | 296 | | |
293 | 297 | | |
| |||
444 | 448 | | |
445 | 449 | | |
446 | 450 | | |
447 | | - | |
| 451 | + | |
| 452 | + | |
| 453 | + | |
| 454 | + | |
| 455 | + | |
| 456 | + | |
448 | 457 | | |
449 | 458 | | |
450 | 459 | | |
| |||
0 commit comments