Skip to content

Commit

Permalink
fix regexpr for path parameter of content route by adding + and % char
Browse files Browse the repository at this point in the history
  • Loading branch information
mamuz committed Feb 24, 2015
1 parent a3efe90 commit 983b2e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/module.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'options' => array(
'route' => '[/:path]',
'constraints' => array(
'path' => '[a-zA-Z][/a-zA-Z0-9_-]*',
'path' => '[a-zA-Z][/a-zA-Z0-9_+%-]*',
),
'defaults' => array(
'controller' => 'MamuzContentManager\Controller\Query',
Expand Down

0 comments on commit 983b2e1

Please sign in to comment.