[Comoblog-commit] comoblog/admin post_edit.php,1.10,1.11
Status: Inactive
Brought to you by:
markwallis
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2006-07-05 00:20:50
|
Update of /cvsroot/comoblog/comoblog/admin In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv29942/admin Modified Files: post_edit.php Log Message: Fix for HTML entities being lost during post edit Index: post_edit.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/admin/post_edit.php,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- post_edit.php 15 Dec 2005 22:10:15 -0000 1.10 +++ post_edit.php 5 Jul 2006 00:20:46 -0000 1.11 @@ -184,6 +184,7 @@ $post['post_mail_date'] = $strdate; $post['post_mail_from'] = htmlentities(antispam($post['post_mail_from'])); + $post['post_mail_body'] = htmlentities($post['post_mail_body']); $tpl->assign('POST', $post); |