diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-05-19 01:08:28 +0000 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-05-19 01:08:28 +0000 |
commit | 4186dd2691bf4f6d0ddbf74e385dca00018747be (patch) | |
tree | a0a60918127e426ddf1d8d3bd4535d486e0b8b51 /lib/router.php | |
parent | 35b39342337fed5916e06876c8a37068d2052937 (diff) | |
parent | 8c5d1b63df63bdf73ef08f8b8c46699089939fc8 (diff) |
Merge branch '0.8.x' of git@gitorious.org:laconica/dev into 0.8.x
Diffstat (limited to 'lib/router.php')
-rw-r--r-- | lib/router.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/router.php b/lib/router.php index f07e59373..70ee0f3fb 100644 --- a/lib/router.php +++ b/lib/router.php @@ -426,6 +426,11 @@ class Router array('size' => '(original|96|48|24)', 'nickname' => '[a-zA-Z0-9]{1,64}')); + $m->connect(':nickname/tag/:tag/rss', + array('action' => 'userrss'), + array('nickname' => '[a-zA-Z0-9]{1,64}'), + array('tag' => '[a-zA-Z0-9]+')); + $m->connect(':nickname/tag/:tag', array('action' => 'showstream'), array('nickname' => '[a-zA-Z0-9]{1,64}'), |