Skip Menu |

This queue is for tickets about the VUser-Google-Apps CPAN distribution.

Report information
The Basics
Id: 36989
Status: resolved
Priority: 0/
Queue: VUser-Google-Apps

People
Owner: Nobody in particular
Requestors: lpenou+bitcard [...] imelavi.fr
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.1.0
Fixed in: (no value)



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; ...
Fix applied to CVS.