Subject: | Error in module |
Bug in MIME-Lite
Version 3.01_04
There is a line in the module Lite.pm
map { UNIVERAL::isa( $_, 'ARRAY' ) ? @$_ : UNIVERAL::isa( $_, 'HASH' ) ? %$_ : $_ } @_;
The word UNIVERSAL is mis-spelt twice. The line shoudl read map {
UNIVERSAL::isa( $_, 'ARRAY' ) ? @$_ : UNIVERSAL::isa( $_, 'HASH' ) ? %$_ : $_ } @_;