Subject: | splice() offset past end of array |
Date: | Thu, 26 Mar 2009 16:16:44 -0400 |
To: | bug-Net-Laconica [...] rt.cpan.org |
From: | Rocold <rocold [...] gmail.com> |
Dist:Net-Laconica-0.08
Perl: This is perl, v5.8.8 built for x86_64-linux
OS: Linux 2.6.27-6_1.intel.BHsmp #1 SMP Thu Nov 13 15:27:29 MST 2008
x86_64 x86_64 x86_64 GNU/Linux
I installed Net-Laconica via CPAN.
I am trying to run the default test script on a bluehost box.
use Net::Laconica;
my $identi = Net::Laconica->new(
uri => 'http://myhost.com/',
username => 'username',
password => 'password'
);
print map { $_, "\n" } $identi->fetch;
but i get the following error:
splice() offset past end of array at
/perl/usr/lib/perl5/site_perl/5.8.8/Net/Laconica.pm line 77.
which is:
# Ignore the first array element which is undef, and return the rest
of the elements
splice @{$self->{contents}}, 1, $number;
Thanks,
Rocold