Skip Menu |

This queue is for tickets about the Apache2-AuthCookieDBI CPAN distribution.

Report information
The Basics
Id: 46117
Status: resolved
Worked: 10 min
Priority: 0/
Queue: Apache2-AuthCookieDBI

People
Owner: matisse [...] spamcop.net
Requestors: matisse [...] spamcop.net
RALF [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 2.04
Fixed in: 2.13



CC: RALF
Subject: $HEX_STRING_REGEX definition is wrong
RALF reported this originally in https://rt.cpan.org/Ticket/Display.html?id=43083 Wrong: my $HEX_STRING_REGEX = qr/ \A [0-9a-fA-F] \z /mx; Better: my $HEX_STRING_REGEX = qr/ \A [0-9a-fA-F]+ \z /mx;