From 6a1b3fcd19bb7ebff120398453e01b2014c3af98 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: http://svn.automattic.com/wordpress/trunk@5519 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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'] ); ?>