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;