diff --git a/wp-includes/default-widgets.php b/wp-includes/default-widgets.php index 38d43716e..c36fc6453 100644 --- a/wp-includes/default-widgets.php +++ b/wp-includes/default-widgets.php @@ -525,10 +525,10 @@ class WP_Widget_Recent_Posts extends WP_Widget { if ( !is_array($cache) ) $cache = array(); - if ( ! isset( $args['widget_id'] ) ) + if ( ! isset( $args['widget_id'] ) ) $args['widget_id'] = $this->id; - if ( false && isset( $cache[ $args['widget_id'] ] ) ) { + if ( isset( $cache[ $args['widget_id'] ] ) ) { echo $cache[ $args['widget_id'] ]; return; } @@ -634,7 +634,7 @@ class WP_Widget_Recent_Comments extends WP_Widget { if ( ! isset( $args['widget_id'] ) ) $args['widget_id'] = $this->id; - if ( false && isset( $cache[ $args['widget_id'] ] ) ) { + if ( isset( $cache[ $args['widget_id'] ] ) ) { echo $cache[ $args['widget_id'] ]; return; }