[Comoblog-commit] comoblog/admin manage_posts.php,1.2,1.3
Status: Inactive
Brought to you by:
markwallis
|
From: iamdecal <iam...@us...> - 2005-12-15 17:02:45
|
Update of /cvsroot/comoblog/comoblog/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22177/comoblog/admin Modified Files: manage_posts.php Log Message: typo in last commit fixed Index: manage_posts.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/admin/manage_posts.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- manage_posts.php 15 Dec 2005 16:50:43 -0000 1.2 +++ manage_posts.php 15 Dec 2005 17:02:30 -0000 1.3 @@ -40,7 +40,7 @@ $posts[$cnt]['post_mail_date'] = strftime('%D %T',$posts[$cnt]['post_mail_date']); if ( $posts[$cnt]['post_mail_subject'] == ""){ // need to to strip html incase we break across a tag - $title = filter_html($posts[$cnt]['post_mail_subject']); + $title = filter_html($posts[$cnt]['post_mail_body']); $posts[$cnt]['post_mail_subject'] = substr($title,0,150) ."..." ; } |