Subject: | find_encoding used in Date::Manip::Base.pm but not properly loaded |
Date: | Tue, 6 Aug 2013 22:26:01 -0400 |
To: | bug-Date-Manip [...] rt.cpan.org |
From: | Krishna Subramanian <skrisna [...] gmail.com> |
Hello,
Thanks for the great module. I had to make a small change for it to work
properly when setting the 'encoding' config option.
I am using $VERSION = '6.40' of Date::Manip module. I had to add the
following to Date/Manip/Base.pm to get it to work-
-use Encode qw(encode_utf8 from_to);
+use Encode qw(encode_utf8 from_to find_encoding);
Thanks,
Krishna