Set a consistent cache key when using the_widget to display the Recent Posts and Recent Comments widgets so that they get cached. See #16761.

git-svn-id: http://svn.automattic.com/wordpress/trunk@18677 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2011-09-15 10:08:43 +00:00
parent 7fd6ab93c3
commit 5405bd3838
1 changed files with 8 additions and 2 deletions

View File

@ -525,7 +525,10 @@ class WP_Widget_Recent_Posts extends WP_Widget {
if ( !is_array($cache) )
$cache = array();
if ( isset( $args['widget_id'] ) && isset( $cache[ $args['widget_id'] ] ) ) {
if ( ! isset( $args['widget_id'] ) )
$args['widget_id'] = $this->id;
if ( false && isset( $cache[ $args['widget_id'] ] ) ) {
echo $cache[ $args['widget_id'] ];
return;
}
@ -628,7 +631,10 @@ class WP_Widget_Recent_Comments extends WP_Widget {
if ( ! is_array( $cache ) )
$cache = array();
if ( isset( $args['widget_id'] ) && isset( $cache[ $args['widget_id'] ] ) ) {
if ( ! isset( $args['widget_id'] ) )
$args['widget_id'] = $this->id;
if ( false && isset( $cache[ $args['widget_id'] ] ) ) {
echo $cache[ $args['widget_id'] ];
return;
}