summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--wp-includes/widgets.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-includes/widgets.php b/wp-includes/widgets.php
index 7eae8b0..f4e2681 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'];
?>
<?php echo $before_widget; ?>
<?php if ( !empty( $title ) ) { echo $before_title . $title . $after_title; } ?>