1
0
mirror of https://github.com/dannyvankooten/AltoRouter.git synced 2025-08-11 10:55:08 +02:00

Merge pull request #35 from koenpunt/fix-tests

fix tests by treating . as part separator (Thank you @joegreen88, closing #26.)
This commit is contained in:
Koen Punt
2013-10-07 09:07:51 -07:00

View File

@@ -197,7 +197,7 @@ class AltoRouter {
'h' => '[0-9A-Fa-f]++',
'*' => '.+?',
'**' => '.++',
'' => '[^/]++'
'' => '[^/\.]++'
);
foreach ($matches as $match) {