From 9e9589e6f9202ad5daf49b8ef0a57caaeb56801f Mon Sep 17 00:00:00 2001 From: saxmatt Date: Wed, 5 May 2004 06:47:20 +0000 Subject: [PATCH] remove_slashes was broken. git-svn-id: http://svn.automattic.com/wordpress/trunk@1226 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 bd3e2f92e..193cb346f 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 c8ba7bea7..1902279b0 100644 --- a/wp-includes/template-functions-comment.php +++ b/wp-includes/template-functions-comment.php @@ -1,23 +1,19 @@