diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-11-24 18:41:15 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-11-24 18:41:15 -0500 |
commit | 6d355a9d60e48fdf577ff4a8a5504d99863579c3 (patch) | |
tree | 24339fbfe37f4a622fcad712d14f7588c3883e6d | |
parent | a9d628c2b3773254192e2cdf1f6cdef8b3912c4b (diff) |
correct the output formats for api user timelines
darcs-hash:20081124234115-5ed1f-4a136027fddd625c39f14b5ec2e3e9d0fd0a6b3b.gz
-rw-r--r-- | lib/util.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/util.php b/lib/util.php index 119677091..56eeaa257 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1148,11 +1148,11 @@ function common_fancy_url($action, $args=NULL) { case 'user_timeline.rss': return common_path('api/statuses/user_timeline/'.$args['argument'].'.rss'); case 'user_timeline.atom': - return common_path('api/statuses/user_timeline/'.$args['argument'].'.rss'); - case 'user_timeline.rss': - return common_path('api/statuses/user_timeline/'.$args['argument'].'.rss'); - case 'user_timeline.atom': - return common_path('api/statuses/user_timeline/'.$args['argument'].'.rss'); + return common_path('api/statuses/user_timeline/'.$args['argument'].'.atom'); + case 'user_timeline.json': + return common_path('api/statuses/user_timeline/'.$args['argument'].'.json'); + case 'user_timeline.xml': + return common_path('api/statuses/user_timeline/'.$args['argument'].'.xml'); default: return common_simple_url($action, $args); } default: return common_simple_url($action, $args); |