diff options
| author | 2012-10-25 22:41:09 +0200 | |
|---|---|---|
| committer | 2012-10-25 22:41:09 +0200 | |
| commit | 93440e6b036941685185bd31d6d6cb2d032ec825 (patch) | |
| tree | f7d52c12068f7dd00f5f79127933897c8414954b /app | |
| parent | b5916b6c04cd7428cd188ed56545dbf985b6c18c (diff) | |
correction bug dans l'ordre des routes
Diffstat (limited to 'app')
| -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 |
