Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
webui: fix pool module router constraints
Fixes #1251: Error when displaying pool detail
  • Loading branch information
fbergkemper committed Aug 5, 2021
1 parent a89617a commit 02ccca6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webui/module/Pool/config/module.config.php
Expand Up @@ -43,7 +43,7 @@
'route' => '/pool[/][: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' => 'Pool\Controller\Pool',
Expand Down

0 comments on commit 02ccca6

Please sign in to comment.