X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Frssaction.php;h=7d79ac043dd4867588c37cc72b3f9a6a3fd7af76;hb=0ba99486039b10686a520e22ef50385625e5b9ae;hp=9d38bb2755326b8cf53ac4612cdd3b9c94ad5954;hpb=1c50e110776b1676303bcd894fabe0fbf92cad31;p=quix0rs-gnu-social.git diff --git a/lib/rssaction.php b/lib/rssaction.php index 9d38bb2755..7d79ac043d 100644 --- a/lib/rssaction.php +++ b/lib/rssaction.php @@ -110,9 +110,10 @@ class Rss10Action extends Action { function show_item($notice) { global $config; + $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->created); + common_element('title', NULL, $profile->nickname."'s status on ".common_date_string($notice->created)); common_element('link', NULL, $nurl); common_element('description', NULL, $notice->content); common_element('dc:date', NULL, common_date_w3dtf($notice->created));