diff options
author | Evan Prodromou <evan@status.net> | 2010-02-25 18:45:32 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-02-25 18:45:32 -0500 |
commit | 4aa82f75ed692e254c573096168e1cd7c0890ac6 (patch) | |
tree | 9fb87849f1f09c69c1c8e1a7c93d76fa283d5330 /lib/router.php | |
parent | 6578e0e1afed8e8738bbcb31d200927e10074f11 (diff) | |
parent | e254c660f66e1a04ac18220c95ef47aa88117e3c (diff) |
Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing
Diffstat (limited to 'lib/router.php')
-rw-r--r-- | lib/router.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/router.php b/lib/router.php index 16b2847d3..abbce041d 100644 --- a/lib/router.php +++ b/lib/router.php @@ -247,6 +247,9 @@ class Router $m->connect('group/:nickname/'.$v, array('action' => $v.'group'), array('nickname' => '[a-zA-Z0-9]+')); + $m->connect('group/:id/id/'.$v, + array('action' => $v.'group'), + array('id' => '[0-9]+')); } foreach (array('members', 'logo', 'rss', 'designsettings') as $n) { |