in reply to Re: Prototype mismatch using mod_perl
in thread Prototype mismatch using mod_perl

That bug in mod_perl
The problem is in use Encode qw(encode decode);
The problem , that is modules redefining functions and ModPerl::RunPerl can't handle this in right way.
(read the post under, it's bug in mod_perl).
I must to find way to get rid of this messages !
thanks

Replies are listed 'Best First'.
Re^3: Prototype mismatch using mod_perl
by kobargh (Novice) on Apr 17, 2012 at 12:43 UTC
    You can import 'nothing' and then use full function names to get rid of these messages
    use Encode(); Encode::encode(); Encode::decode();