I found the solution. The same bug was reported last year and
route.php was fixed. See:

https://trac.cakephp.org/ticket/2392

However, the solution is not at all clear from that. Looking at the
diff, it seems that the regex should not have braces:

'month' => '(0[1-9]|1[012])',
'day' => '(0[1-9]|[12][0-9]|3[01])'

should be:

'month' => '0[1-9]|1[012]',
'day' => '0[1-9]|[12][0-9]|3[01]'

The manual should be updated with this.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to