From 9da4053c2697c8ba4ab0573b32763859fa4ddea9 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Fri, 11 Jun 2004 16:51:39 +0000 Subject: [PATCH] stripslashes() elimination. git-svn-id: https://develop.svn.wordpress.org/trunk@1408 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 5020854d18..d6356847a7 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -1046,14 +1046,14 @@ function start_wp() { if ($page > 1) $more = 1; $multipage = 1; - $content = stripslashes($post->post_content); + $content = $post->post_content; $content = str_replace("\n\n", '', $content); $content = str_replace("\n", '', $content); $content = str_replace("\n", '', $content); $pages = explode('', $content); $numpages = count($pages); } else { - $pages[0] = stripslashes($post->post_content); + $pages[0] = $post->post_content; $multipage = 0; } return true;