diff options
author | Jeffery To <jeffery.to@gmail.com> | 2009-08-06 23:36:24 +0800 |
---|---|---|
committer | Jeffery To <jeffery.to@gmail.com> | 2009-08-06 23:36:24 +0800 |
commit | adc5901d21be286ff3459f2cd2bf4373625ac5e5 (patch) | |
tree | 6cd344340fefe9d84012f7f0563f2c8386e85914 /actions/favoritesrss.php | |
parent | c8c2d9d7c93f40e7ac81c6211f8ba4c3f6ae91d9 (diff) |
Make RSS 1.0 channel descriptions more consistent with RSS 2.0 and Atom descriptions
Diffstat (limited to 'actions/favoritesrss.php')
-rw-r--r-- | actions/favoritesrss.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/favoritesrss.php b/actions/favoritesrss.php index c439a9a62..5dc09e5e8 100644 --- a/actions/favoritesrss.php +++ b/actions/favoritesrss.php @@ -111,8 +111,8 @@ class FavoritesrssAction extends Rss10Action 'link' => common_local_url('showfavorites', array('nickname' => $user->nickname)), - 'description' => sprintf(_('Feed of favorite notices of %s'), - $user->nickname)); + 'description' => sprintf(_('Updates favored by %1$s on %2$s!'), + $user->nickname, common_config('site', 'name'))); return $c; } |