Fix cache in WP_Widget_Recent_Posts, fixes #10251 for trunk
git-svn-id: http://svn.automattic.com/wordpress/trunk@11651 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ec0eadf2c4
commit
8b64b300cc
|
@ -526,8 +526,10 @@ class WP_Widget_Recent_Posts extends WP_Widget {
|
|||
if ( !is_array($cache) )
|
||||
$cache = array();
|
||||
|
||||
if ( isset($cache[$args['widget_id']]) )
|
||||
return $cache[$args['widget_id']];
|
||||
if ( isset($cache[$args['widget_id']]) ) {
|
||||
echo $cache[$args['widget_id']];
|
||||
return;
|
||||
}
|
||||
|
||||
ob_start();
|
||||
extract($args);
|
||||
|
|
Loading…
Reference in New Issue