Include user name in item titles for RSS aggregator users.
darcs-hash:20080714153859-68ac8-8c370d385fd060d2fcebc118c3000f3c383fb4dc.gz
This commit is contained in:
parent
941eb61e82
commit
f5bddd414a
@ -116,7 +116,8 @@ class Rss10Action extends Action {
|
|||||||
$profile = Profile::staticGet($notice->profile_id);
|
$profile = Profile::staticGet($notice->profile_id);
|
||||||
$nurl = common_local_url('shownotice', array('notice' => $notice->id));
|
$nurl = common_local_url('shownotice', array('notice' => $notice->id));
|
||||||
common_element_start('item', array('rdf:about' => $notice->uri));
|
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('link', NULL, $nurl);
|
||||||
common_element('description', NULL, $profile->nickname."'s status on ".common_exact_date($notice->created));
|
common_element('description', NULL, $profile->nickname."'s status on ".common_exact_date($notice->created));
|
||||||
common_element('dc:date', NULL, common_date_w3dtf($notice->created));
|
common_element('dc:date', NULL, common_date_w3dtf($notice->created));
|
||||||
|
Loading…
Reference in New Issue
Block a user