Subject: | RetrievePageOfEmailLists not using startlist and =cut to be removed |
Hi,
the double "=cut" create an issue
RetrievePageOfEmailLists do not use $startlist
I suggest a correction below
=======================================================
Actual code :
RetrievePageOfEmailLists($startList)
=over
Get a single page (100 lists) of email lists.
=cut
=cut
sub RetrievePageOfEmailLists {
my $self = shift;
my $start_emaillist;
...
=======================================================
To be replaced by :
RetrievePageOfEmailLists($startList)
=over
Get a single page (100 lists) of email lists.
=cut
sub RetrievePageOfEmailLists {
my $self = shift;
my $start_emaillist = shift;
...