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};