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:
azaozz 2009-06-26 14:35:40 +00:00
parent ec0eadf2c4
commit 8b64b300cc
1 changed files with 4 additions and 2 deletions

View File

@ -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);