Skip Menu |

This queue is for tickets about the MIME-Lite CPAN distribution.

Report information
The Basics
Id: 15512
Status: resolved
Priority: 0/
Queue: MIME-Lite

People
Owner: Nobody in particular
Requestors: scott [...] perlcode.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 3.01_04
Fixed in: (no value)



Subject: typo in send_by_sendmail() method
There's a typo in MIME::Lite's send_by_sendmail() method: map { UNIVERAL::isa( $_, 'ARRAY' ) ? @$_ : UNIVERAL::isa( $_, 'HASH' ) ? %$_ : $_ } @_; should be UNIVER"S"AL
--- Lite.pm~ Fri May 7 17:43:11 2004 +++ Lite.pm Thu Nov 3 23:28:52 2005 @@ -2641,7 +2641,7 @@ $return = ( ( $? >> 8 ) ? undef: 1 ); } else { ### Build the command... my %p = - map { UNIVERAL::isa( $_, 'ARRAY' ) ? @$_ : UNIVERAL::isa( $_, 'HASH' ) ? %$_ : $_ } @_; + map { UNIVERSAL::isa( $_, 'ARRAY' ) ? @$_ : UNIVERSAL::isa( $_, 'HASH' ) ? %$_ : $_ } @_; $p{Sendmail} = $SENDMAIL unless defined $p{Sendmail};
long since fixed -- rjbs