diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-02-20 10:04:28 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-02-20 10:04:28 -0500 |
commit | 5ec5a22dc75cb8f4d896b41ca24067c68d3e1de6 (patch) | |
tree | 85523f3f95e3db2551953cd95996878dacfba3a2 /lib/router.php | |
parent | 673e7d2559dd0e0fe1405da60081946e6238251a (diff) |
make tagother work with router
Diffstat (limited to 'lib/router.php')
-rw-r--r-- | lib/router.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/router.php b/lib/router.php index d47ad7118..e55b597f2 100644 --- a/lib/router.php +++ b/lib/router.php @@ -98,12 +98,14 @@ class Router $main = array('login', 'logout', 'register', 'subscribe', 'unsubscribe', 'confirmaddress', 'recoverpassword', 'invite', 'favor', 'disfavor', 'sup', - 'tagother', 'block'); + 'block'); foreach ($main as $a) { $m->connect('main/'.$a, array('action' => $a)); } + $m->connect('main/tagother/:id', array('action' => 'tagother')); + // these take a code foreach (array('register', 'confirmaddress', 'recoverpassword') as $c) { |