diff options
author | csarven <csarven@controlyourself.ca> | 2008-11-14 16:43:15 -0500 |
---|---|---|
committer | csarven <csarven@controlyourself.ca> | 2008-11-14 16:43:15 -0500 |
commit | 2dd4857dacc144a9622d7ce49d7924abaf2e6d6c (patch) | |
tree | 2e23dc5e644b965d28cf6e68267ea7fb4fa6471a | |
parent | 67f3c1a8d40d6e05ea2fa72af917b26fb9503e06 (diff) |
trac626 Bugfix: Atom URL missing a dot
darcs-hash:20081114214315-eefa4-f21edae797a7c9c685dd00c858731b173337bf85.gz
-rw-r--r-- | lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index 2b4071ba6..cfc95cc36 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1031,7 +1031,7 @@ function common_fancy_url($action, $args=NULL) { } case 'usertimeline': - return common_path("api/statuses/user_timeline/".$args['nickname']."atom"); + return common_path("api/statuses/user_timeline/".$args['nickname'].".atom"); case 'confirmaddress': return common_path('main/confirmaddress/'.$args['code']); case 'userbyid': |