From adc5901d21be286ff3459f2cd2bf4373625ac5e5 Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Thu, 6 Aug 2009 23:36:24 +0800 Subject: Make RSS 1.0 channel descriptions more consistent with RSS 2.0 and Atom descriptions --- actions/userrss.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'actions/userrss.php') diff --git a/actions/userrss.php b/actions/userrss.php index 8a940865f..a9f3fd5f8 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -88,9 +88,10 @@ class UserrssAction extends Rss10Action $c = array('url' => common_local_url('userrss', array('nickname' => $user->nickname)), - 'title' => $user->nickname, + 'title' => sprintf(_('%s timeline'), $user->nickname), 'link' => $profile->profileurl, - 'description' => sprintf(_('Microblog by %s'), $user->nickname)); + 'description' => sprintf(_('Updates from %1$s on %2$s!'), + $user->nickname, common_config('site', 'name'))); return $c; } -- cgit v1.2.3-54-g00ecf