Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
None
-
None
-
None
-
None
Description
Queries can generate the following errors:
Use of uninitialized value $mods in substitution (s///) at /usr/local/labs/pulse/email-query/listex-report.pl line 360, <STDIN> line 36.
Use of uninitialized value $mods in concatenation (.) or string at /usr/local/labs/pulse/email-query/listex-report.pl line 361, <STDIN> line 36.
The error means the lists without moderators are not reported.
Line 359:
my $mods = $listinfo->
could be changed to:
my $mods = $listinfo->{moderators}
|| '';
which should prevent the errors.