summaryrefslogtreecommitdiff
path: root/actions/tagrss.php
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2009-08-06 22:45:09 -0400
committerCraig Andrews <candrews@integralblue.com>2009-08-06 22:45:09 -0400
commit91cba7a76f97a1669cbe9a2c2fa1b3e653786f26 (patch)
tree41b17a816862539845900c4d28ece7b638e6a77d /actions/tagrss.php
parentaba2fcb45141929d9fdb0ec5e91e3aef8c44d709 (diff)
parentadc5901d21be286ff3459f2cd2bf4373625ac5e5 (diff)
Merge commit 'jeff-themovie/0.8.x-rss-1.0-descriptions' into 0.8.x
Diffstat (limited to 'actions/tagrss.php')
-rw-r--r--actions/tagrss.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/actions/tagrss.php b/actions/tagrss.php
index f69374fca..c3c03b9cd 100644
--- a/actions/tagrss.php
+++ b/actions/tagrss.php
@@ -61,7 +61,8 @@ class TagrssAction extends Rss10Action
$c = array('url' => common_local_url('tagrss', array('tag' => $tagname)),
'title' => $tagname,
'link' => common_local_url('tagrss', array('tag' => $tagname)),
- 'description' => sprintf(_('Microblog tagged with %s'), $tagname));
+ 'description' => sprintf(_('Updates tagged with %1$s on %2$s!'),
+ $tagname, common_config('site', 'name')));
return $c;
}