[Comoblog-commit] comoblog/admin post_edit.php,1.8,1.9
Status: Inactive
Brought to you by:
markwallis
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-12-14 04:21:30
|
Update of /cvsroot/comoblog/comoblog/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28104 Modified Files: post_edit.php Log Message: 1375731 - Date formatting issue while editing posts Index: post_edit.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/admin/post_edit.php,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- post_edit.php 7 Dec 2005 21:04:49 -0000 1.8 +++ post_edit.php 14 Dec 2005 04:21:13 -0000 1.9 @@ -174,7 +174,7 @@ if ($post) { - $strdate = strftime($CAL_DATE_FORMAT." %H:%M", $post['post_mail_date']); + $strdate = strftime("%D %H:%M", $post['post_mail_date']); $post['post_mail_date'] = $strdate; $post['post_mail_from'] = htmlentities(antispam($post['post_mail_from'])); |