[Comoblog-commit] comoblog/modules/mod_rss rss.php,1.2,1.3
Status: Inactive
Brought to you by:
markwallis
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-04 06:56:05
|
Update of /cvsroot/comoblog/comoblog/modules/mod_rss In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2557/modules/mod_rss Modified Files: rss.php Log Message: RFE: 1280277 - Fixed reporting of post_date in RSS Index: rss.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/modules/mod_rss/rss.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- rss.php 2 Sep 2005 01:06:16 -0000 1.2 +++ rss.php 4 Oct 2005 06:55:56 -0000 1.3 @@ -42,7 +42,7 @@ $posts[$c]['post_mail_subject'] = htmlspecialchars(strip_tags($posts[$c]['post_mail_subject'])); $posts[$c]['post_mail_body'] = htmlspecialchars(strip_tags($posts[$c]['post_mail_body'])); $posts[$c]['post_mail_from'] = htmlspecialchars(strip_tags($posts[$c]['post_mail_from'])); - + $posts[$c]['post_mail_date'] = strftime($CAL_DATE_FORMAT." %H:%M", $posts[$c]['post_mail_date']); $post['post_category'] = ''; $tpl->assign('POST', $posts[$c]); |