X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Frssaction.php;h=46f5dceea9b52207044d7ccd9c2fe1f210706794;hb=d40455405afe5621bb46d7cce5f118c13126bb60;hp=b70ece6a028da1557527523fe16a2ad2288f61c2;hpb=f4a0c2b8012fa6699b980af6f1af905d1cb0f6e3;p=quix0rs-gnu-social.git diff --git a/lib/rssaction.php b/lib/rssaction.php index b70ece6a02..46f5dceea9 100644 --- a/lib/rssaction.php +++ b/lib/rssaction.php @@ -116,9 +116,9 @@ 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, $profile->nickname."'s status on ".common_date_string($notice->created)); + common_element('title', NULL, $notice->content); common_element('link', NULL, $nurl); - common_element('description', NULL, $notice->content); + 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:creator', NULL, ($profile->fullname) ? $profile->fullname : $profile->nickname); common_element('cc:licence', array('rdf:resource' => $config['license']['url']));