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

Commit

Permalink
Fixes Routing
Browse files Browse the repository at this point in the history
Signed-off-by: Frank Bergkemper <frank.bergkemper@dass-it.de>
  • Loading branch information
fbergkemper committed Sep 9, 2015
1 parent 43e5b92 commit 9068d88
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion module/Client/config/module.config.php
Expand Up @@ -40,7 +40,7 @@
'client' => array(
'type' => 'segment',
'options' => array(
'route' => '/client[/][:action][/:id][order_by/:order_by][/:order][/][limit/:limit]',
'route' => '/client[/][:action][/][:id][order_by/:order_by][/:order][/][limit/:limit]',
'constraints' => array(
'action' => '(?!\blimit\b)(?!\border_by\b)[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[a-zA-Z][a-zA-Z0-9_-]*',
Expand Down
2 changes: 1 addition & 1 deletion module/Fileset/config/module.config.php
Expand Up @@ -40,7 +40,7 @@
'fileset' => array(
'type' => 'segment',
'options' => array(
'route' => '/fileset[/][:action][/:id][order_by/:order_by][/:order][/][limit/:limit]',
'route' => '/fileset[/][:action][/][:id][order_by/:order_by][/:order][/][limit/:limit]',
'constraints' => array(
'action' => '(?!\blimit\b)(?!\border_by\b)[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[a-zA-Z][a-zA-Z0-9_-]*',
Expand Down
2 changes: 1 addition & 1 deletion module/Media/config/module.config.php
Expand Up @@ -40,7 +40,7 @@
'media' => array(
'type' => 'segment',
'options' => array(
'route' => '/media[/][:action][/:id][order_by/:order_by][/:order][/][limit/:limit]',
'route' => '/media[/][:action][/][:id][order_by/:order_by][/:order][/][limit/:limit]',
'constraints' => array(
'action' => '(?!\blimit\b)(?!\border_by\b)[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[a-zA-Z][a-zA-Z0-9_-]*',
Expand Down

0 comments on commit 9068d88

Please sign in to comment.