From ef353e438a51fb9d8692297230fa58332ee2d0d7 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Wed, 5 May 2004 06:47:20 +0000 Subject: [PATCH] remove_slashes was broken. git-svn-id: https://develop.svn.wordpress.org/trunk@1226 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/functions.php | 4 ---- wp-includes/template-functions-comment.php | 4 ---- wp-includes/template-functions-post.php | 1 - 3 files changed, 9 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index bd3e2f92e4..193cb346f7 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -1296,10 +1296,6 @@ function rewrite_rules($matches = '', $permalink_structure = '') { return $rewrite; } -function remove_slashes($string) { - return stripslashes(stripslashes($string)); -} - function get_posts($args) { global $wpdb, $tableposts; parse_str($args, $r); diff --git a/wp-includes/template-functions-comment.php b/wp-includes/template-functions-comment.php index c8ba7bea7f..1902279b08 100644 --- a/wp-includes/template-functions-comment.php +++ b/wp-includes/template-functions-comment.php @@ -1,23 +1,19 @@