Thu Apr 24 13:45:54 2008erantapaa [...] gmail.com - Ticket created
Subject:
bug in Net::Google::Calendar::Base::_initialize
Date:
Thu, 24 Apr 2008 12:45:31 -0500
To:
bug-Net-Google-Calendar [...] rt.cpan.org
From:
"Erik Rantapaa" <erantapaa [...] gmail.com>
This routine is missing "my $self = shift;" at the beginning:
sub _initialize {
my $class = ref($self)? ref($self) : $self;
my $ns = XML::Atom::Namespace->new(gd =>
'http://schemas.google.com/g/2005');
$self->{_gd_ns} = $ns;
}
A consequence is that things like $entry->when don't work.