Skip Menu |

This queue is for tickets about the Catalyst-View-TT-ForceUTF8 CPAN distribution.

Report information
The Basics
Id: 26759
Status: new
Priority: 0/
Queue: Catalyst-View-TT-ForceUTF8

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

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



Subject: syntax error
This (around line 52) my %args = map { ($_, $config->{$_}) } grep { exists $config->{$_} } for @PROVIDER_CONFIG_KEYS; should not have the "for." Should just be: my %args = map { ($_, $config->{$_}) } grep { exists $config->{$_} } @PROVIDER_CONFIG_KEYS; This is breaking the module on my platform. Thank you!! -Ashley