Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
Fix to bugreport #771
Browse files Browse the repository at this point in the history
Fixes #771: 404 error when browsing a host starting with a number
  • Loading branch information
fbergkemper committed Jan 26, 2017
1 parent b84bee6 commit ea0202e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/Client/config/module.config.php
Expand Up @@ -43,7 +43,7 @@
'route' => '/client[/][:action][/][:id]',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[a-zA-Z][a-zA-Z0-9\._-]*',
'id' => '[a-zA-Z0-9][a-zA-Z0-9\._-]*',
),
'defaults' => array(
'controller' => 'Client\Controller\Client',
Expand Down

0 comments on commit ea0202e

Please sign in to comment.