diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-07-12 15:06:37 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-07-12 15:06:37 -0400 |
commit | 7654d690223f63c5af608da0981213b8f500deb9 (patch) | |
tree | e07a2ac4e934faecee7f48592a74ce382d3c80cc | |
parent | 7621e0e38467349a89f71e814941932fbacecfa1 (diff) |
Fix atom self reference in the groups api
-rw-r--r-- | actions/twitapigroups.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actions/twitapigroups.php b/actions/twitapigroups.php index db15b2cd3..71a0776f4 100644 --- a/actions/twitapigroups.php +++ b/actions/twitapigroups.php @@ -94,11 +94,11 @@ require_once INSTALLDIR.'/lib/twitterapi.php'; case 'atom': if (isset($apidata['api_arg'])) { $selfuri = common_root_url() . - 'api/statuses/groups/timeline/' . + 'api/laconica/groups/timeline/' . $apidata['api_arg'] . '.atom'; } else { $selfuri = common_root_url() . - 'api/statuses/groups/timeline.atom'; + 'api/laconica/groups/timeline.atom'; } $this->show_atom_timeline($notice, $title, $id, $link, $subtitle, $suplink, $selfuri); @@ -111,4 +111,4 @@ require_once INSTALLDIR.'/lib/twitterapi.php'; } } -}
\ No newline at end of file +} |