Skip to content

Commit

Permalink
fixed mistake in url routing with close ticket
Browse files Browse the repository at this point in the history
  • Loading branch information
kokspflanze committed Aug 30, 2015
1 parent 0d6f377 commit ebbb147
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/module.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'options' => [
'route' => '/panel/ticket[-:action[-:id]].html',
'constraints' => [
'action' => '[a-zA-Z]+',
'action' => '[a-zA-Z-]+',
'id' => '[0-9]+',
],
'defaults' => [
Expand All @@ -22,7 +22,7 @@
'options' => [
'route' => '/admin/ticket[-:action[-:id]][-:type].html',
'constraints' => [
'action' => '[a-zA-Z]+',
'action' => '[a-zA-Z-]+',
'id' => '[0-9]+',
'type' => '[0-9]+',
],
Expand Down

0 comments on commit ebbb147

Please sign in to comment.