Fix a bug in the delete method, execute is passed an array ref.

Update POD about constructors/instanciators.
This commit is contained in:
Colin Kuskie 2008-09-02 02:53:45 +00:00
parent 4ab8102d63
commit 4f5e3a6a43

View file

@ -125,7 +125,7 @@ Deletes this message from the inbox.
sub delete { sub delete {
my $self = shift; my $self = shift;
my $sth = $self->session->db->prepare("delete from inbox where messageId=?"); my $sth = $self->session->db->prepare("delete from inbox where messageId=?");
$sth->execute($self->getId); $sth->execute([$self->getId]);
} }
#------------------------------------------------------------------- #-------------------------------------------------------------------
@ -189,7 +189,8 @@ sub getId {
=head2 new ( session, messageId ) =head2 new ( session, messageId )
Constructor. Constructor used to access existing messages. Use create for making
new messages.
=head3 session =head3 session