summaryrefslogtreecommitdiff
path: root/lib/rssaction.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rssaction.php')
-rw-r--r--lib/rssaction.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/rssaction.php b/lib/rssaction.php
index 46f5dceea..6e2efc182 100644
--- a/lib/rssaction.php
+++ b/lib/rssaction.php
@@ -116,7 +116,8 @@ class Rss10Action extends Action {
$profile = Profile::staticGet($notice->profile_id);
$nurl = common_local_url('shownotice', array('notice' => $notice->id));
common_element_start('item', array('rdf:about' => $notice->uri));
- common_element('title', NULL, $notice->content);
+ $title = $profile->nickname . ': ' . $notice->content;
+ common_element('title', NULL, $title);
common_element('link', NULL, $nurl);
common_element('description', NULL, $profile->nickname."'s status on ".common_exact_date($notice->created));
common_element('dc:date', NULL, common_date_w3dtf($notice->created));