From d575d01059ed563cdf00a5f8658a67b0c8f3a968 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Tue, 22 May 2007 21:32:07 +0000 Subject: [PATCH] Remove the_content filter from widget text. see #4259 git-svn-id: https://develop.svn.wordpress.org/trunk@5518 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/widgets.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/widgets.php b/wp-includes/widgets.php index 7eae8b0399..f4e2681efe 100644 --- a/wp-includes/widgets.php +++ b/wp-includes/widgets.php @@ -523,7 +523,7 @@ function wp_widget_text($args, $number = 1) { extract($args); $options = get_option('widget_text'); $title = $options[$number]['title']; - $text = apply_filters( 'the_content', $options[$number]['text'] ); + $text = $options[$number]['text']; ?>