Skip Menu |

This queue is for tickets about the POE-Component-IRC CPAN distribution.

Report information
The Basics
Id: 34059
Status: resolved
Priority: 0/
Queue: POE-Component-IRC

People
Owner: Nobody in particular
Requestors: yorhel [...] cpan.org
Cc:
AdminCc:

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



Subject: Wrong catdir and catfile in Plugin::Logger
There's a bug in POE::Component::IRC::Plugin::Logger that prevents the module from opening any files, caused by importing the wrong catdir and catfile functions from File::Spec. Replacing the following line: use File::Spec qw(catdir catfile); With: use File::Spec::Functions qw(catdir catfile); Did the trick on my system.
That had already been fixed in svn, but thanks. :) On Thu Mar 13 16:41:59 2008, YORHEL wrote: Show quoted text
> There's a bug in POE::Component::IRC::Plugin::Logger that prevents the > module from opening any files, caused by importing the wrong catdir and > catfile functions from File::Spec. > > Replacing the following line: > > use File::Spec qw(catdir catfile); > > With: > > use File::Spec::Functions qw(catdir catfile); > > Did the trick on my system.