From 6d355a9d60e48fdf577ff4a8a5504d99863579c3 Mon Sep 17 00:00:00 2001
From: Evan Prodromou <evan@controlyourself.ca>
Date: Mon, 24 Nov 2008 18:41:15 -0500
Subject: [PATCH] correct the output formats for api user timelines

darcs-hash:20081124234115-5ed1f-4a136027fddd625c39f14b5ec2e3e9d0fd0a6b3b.gz
---
 lib/util.php | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/lib/util.php b/lib/util.php
index 1196770910..56eeaa2573 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);
-- 
2.39.5