From a24222a0f04887a08d23168adde4c68b4c5d7b6e Mon Sep 17 00:00:00 2001 From: rob1n Date: Tue, 22 May 2007 22:36:56 +0000 Subject: [PATCH] Run it through the filter. see #4259 git-svn-id: https://develop.svn.wordpress.org/trunk@5519 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 f4e2681efe..418df87528 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 = $options[$number]['text']; + $text = apply_filters( 'widget_text', $options[$number]['text'] ); ?>