Skip Menu |

This queue is for tickets about the Mojo CPAN distribution.

Report information
The Basics
Id: 43708
Status: resolved
Priority: 0/
Queue: Mojo

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

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



Subject: MojoX::Routes::Pattern $r->route('/2009')
Hi! If route has '0' (ex. /2009), sub _tokenize will bad parse url. Fix: MojoX::Routes::Pattern line 192: - while (my $char = substr $pattern, 0, 1, '') { + while (length(my $char = substr $pattern, 0, 1, '')) { -- use Perl or die;
Fixed