From d1748820710229e6fb779b868cd6b48c4ff22aea Mon Sep 17 00:00:00 2001 From: toyomoyo Date: Thu, 20 Apr 2006 02:25:09 +0000 Subject: [PATCH] fix for 5256 --- blog/edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/edit.php b/blog/edit.php index 699271ee9d..c44f10fd87 100755 --- a/blog/edit.php +++ b/blog/edit.php @@ -116,7 +116,7 @@ if ($editid) { // User is editing a post //using an unformatted entry body here so that extra formatting information is not stored in the db $post->body = $blogEntry->summary; - $post->etitle = $blogEntry->subject; + $post->etitle = stripslashes_safe($blogEntry->subject); $post->postid = $editid; $post->userid = $blogEntry->userid; $post->format = $blogEntry->format; -- 2.39.5