Skip to content

Commit

Permalink
fixed url route
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Rieger committed Apr 4, 2015
1 parent 67e396f commit bda8533
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions module/Frontend/Login/config/module.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
'register' => array(
'type' => 'literal',
'options' => array(
'route' => '/register',
'route' => 'register',
'defaults' => array(
'controller' => 'Frontend\Login\Controller\Login',
'action' => 'register'
Expand All @@ -24,7 +24,7 @@
'login' => array(
'type' => 'literal',
'options' => array(
'route' => '/login',
'route' => 'login',
'defaults' => array(
'controller' => 'Frontend\Login\Controller\Login',
'action' => 'login'
Expand All @@ -34,7 +34,7 @@
'logout' => array(
'type' => 'literal',
'options' => array(
'route' => '/logout',
'route' => 'logout',
'defaults' => array(
'controller' => 'Frontend\Login\Controller\Login',
'action' => 'logout'
Expand Down

0 comments on commit bda8533

Please sign in to comment.