Remove the_content filter from widget text. see #4259
git-svn-id: http://svn.automattic.com/wordpress/branches/2.2@5517 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
49e362f72e
commit
a8b6e530c6
|
@ -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; } ?>
|
||||
|
|
Loading…
Reference in New Issue