Skip Menu |

This queue is for tickets about the PFT CPAN distribution.

Report information
The Basics
Id: 113705
Status: resolved
Priority: 0/
Queue: PFT

People
Owner: DACAV [...] cpan.org
Requestors: CHORNY [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in:
  • v0.5.2_re
  • v1.0.0
Fixed in: (no value)



Subject: uses feature of perl 5.22
In PFT::Map::Resolver if ($kwd =~ /^(pic|page|blog|attach|tag)$/n) { See https://metacpan.org/pod/distribution/perl/pod/perl5220delta.pod#Non-Capturing-Regular-Expression-Flag So your module should either require perl 5.22 or use (?:). -- Alexandr Ciornii, http://chorny.net
On Tue Apr 12 09:10:45 2016, CHORNY wrote: Show quoted text
> In PFT::Map::Resolver > > if ($kwd =~ /^(pic|page|blog|attach|tag)$/n) { > >[...] > So your module should either require perl 5.22 or use (?:).
Thanks Chorny. The regex is now fixed, with a (?:).