Skip Menu |

This queue is for tickets about the Catalyst-Model-XMLRPC CPAN distribution.

Report information
The Basics
Id: 27635
Status: resolved
Priority: 0/
Queue: Catalyst-Model-XMLRPC

People
Owner: fmerges [...] cpan.org
Requestors: LEEDO [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.01
Fixed in: (no value)



Subject: does not store config options passed in via ConfigLoader
This module does not make any of the config options passed in via ConfigLoader accessable through the ->config method. I have attached a patch that copies the passed in $config hashref.
Subject: xmlrpc_config.patch
--- XMLRPC.pm 2007-06-19 02:14:10.000000000 -0400 +++ XMLRPC_new.pm 2007-06-19 02:18:17.000000000 -0400 @@ -16,6 +16,7 @@ my ($class, $c, $config) = @_; my $self = $class->NEXT::new($c, $config); + $self->config( $config ); return $self; }
Fixed in the new release