Skip to content

Commit

Permalink
Add $wp_query parameter to update_post_thumbnail_cache(). props scrib…
Browse files Browse the repository at this point in the history
…u. see #19949, fixes that ticket for 3.4.

git-svn-id: http://svn.automattic.com/wordpress/trunk@20646 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
nacin committed Apr 30, 2012
1 parent 2f2cb09 commit 89da6de
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions wp-includes/post-thumbnail-template.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,12 @@ function the_post_thumbnail( $size = 'post-thumbnail', $attr = '' ) {
* Update cache for thumbnails in the current loop
*
* @since 3.2
*
* @param object $wp_query Optional. A WP_Query instance. Defaults to the $wp_query global.
*/
function update_post_thumbnail_cache() {
global $wp_query;
function update_post_thumbnail_cache( $wp_query = null ) {
if ( ! $wp_query )
$wp_query = $GLOBALS['wp_query'];

if ( $wp_query->thumbnails_cached )
return;
Expand Down

0 comments on commit 89da6de

Please sign in to comment.