diff options
author | Brion Vibber <brion@pobox.com> | 2010-02-25 13:02:08 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-02-25 13:02:08 -0800 |
commit | b5b5184c885e74d9532409a5962f851c4baf41c4 (patch) | |
tree | aaf0aae0468ff15bd61ad8f4234020ae40e1bd19 /lib/router.php | |
parent | 7e0872c7ca9827220ad9859abaeea268c9d4fee6 (diff) |
OStatus: fix remote groups to work with new user_groups/local_groups split.
- fix <activity:subject> generation so we get the profile info (what's available so far)
- use id instead of nickname for group join/leave forms so we can join/leave remote groups
while the rest of the groups UI remains limited to local groups
(plugins are responsible for making sure remote notifications and permission checks are done)
- fix remote notification when joining group through OStatus's remote subscribe form
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 987d0152e..0e15d83b9 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) { |