diff options
| -rw-r--r-- | app/configuration/routes.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app/configuration/routes.php b/app/configuration/routes.php index d9bb5ca99..e0937731c 100644 --- a/app/configuration/routes.php +++ b/app/configuration/routes.php @@ -46,6 +46,12 @@ return array ( // Entry array ( + 'route' => '/articles/marquer.php\?id=([\w\d\-_]{6})&lu=([\d]{1})', + 'controller' => 'entry', + 'action' => 'read', + 'params' => array ('id', 'is_read') + ), + array ( 'route' => '/articles/marquer.php\?lu=([\d]{1})', 'controller' => 'entry', 'action' => 'read', @@ -57,12 +63,6 @@ return array ( 'action' => 'bookmark', 'params' => array ('id', 'is_favorite') ), - array ( - 'route' => '/articles/marquer.php\?id=([\w\d\-_]{6})&lu=([\d]{1})', - 'controller' => 'entry', - 'action' => 'read', - 'params' => array ('id', 'is_read') - ), // Feed |
