Skip Menu |

This queue is for tickets about the Catalyst-Plugin-Params-Demoronize CPAN distribution.

Report information
The Basics
Id: 54653
Status: resolved
Priority: 0/
Queue: Catalyst-Plugin-Params-Demoronize

People
Owner: diz [...] cpan.org
Requestors: arthas [...] cpan.org
Cc:
AdminCc:

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



Please switch to MRO::Compat to suppress warnings with Catalyst 5.8+. The simple patch is attached (Makefile dependancy should be updated accordingly). Thanks!!!
Subject: C_P_P_Demoronize_mrocompat.patch
--- /usr/lib/perl5/vendor_perl/5.10.1/Catalyst/Plugin/Params/Demoronize.pm 2010-02-11 18:51:53.000000000 +0100 +++ Demoronize.pm 2010-02-16 09:49:13.000000000 +0100 @@ -103,7 +103,7 @@ =cut -use NEXT; +use MRO::Compat; use Encode::ZapCP1252; our $VERSION = '1.13'; @@ -122,7 +122,7 @@ { my $c = shift; - my $retval = $c->NEXT::prepare_parameters(@_); + my $retval = $c->next::method(@_); my $params = $c->req->params; foreach my $key (keys %$params) {
On Tue Feb 16 03:54:37 2010, ARTHAS wrote: Show quoted text
> Please switch to MRO::Compat to suppress warnings with Catalyst 5.8+. > The simple patch is attached (Makefile dependancy should be updated > accordingly). > > Thanks!!!
1.14 on its way up! sorry it took so long.