Subject: | Template::Filters - uri_filter/url_filter regex needs updating |
URI::Escape now uses the RFC3986 regex as below (lines from URI::Escape)
my %Unsafe = (
RFC2732 => qr/[^A-Za-z0-9\-_.!~*'()]/,
RFC3986 => qr/[^A-Za-z0-9\-\._~"]/,
);
lines 282 and 307 in Template::Filters should be updated accordingly to
match the new RFC spec. (or allow config setting of RFC version)
thanks.