Skip Menu |

This queue is for tickets about the Template-Alloy CPAN distribution.

Report information
The Basics
Id: 86997
Status: resolved
Priority: 0/
Queue: Template-Alloy

People
Owner: Nobody in particular
Requestors: jj [...] opusvl.com
Cc:
AdminCc:

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



Subject: Wide character in subroutine entry - UTF8 problem
Date: Wed, 17 Jul 2013 12:47:31 +0100
To: bug-Template-Alloy [...] rt.cpan.org
From: "Jon Allen (JJ)" <jj [...] opusvl.com>
Template::Alloy fails with the message "Wide character in subroutine entry" when processing UTF-8 data. The following patch to lib/Template/Alloy.pm fixes the problem: 14a15 Show quoted text
> use Encode qw(encode_utf8);
336c337 < my $sum = Digest::MD5::md5_hex($$ref); --- Show quoted text
> my $sum = Digest::MD5::md5_hex(encode_utf8($$ref));
Fixed in 1.018