summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2009-07-12 15:06:37 -0400
committerCraig Andrews <candrews@integralblue.com>2009-07-12 15:06:37 -0400
commit7654d690223f63c5af608da0981213b8f500deb9 (patch)
treee07a2ac4e934faecee7f48592a74ce382d3c80cc /actions
parent7621e0e38467349a89f71e814941932fbacecfa1 (diff)
Fix atom self reference in the groups api
Diffstat (limited to 'actions')
-rw-r--r--actions/twitapigroups.php6
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
+}