From 05cceca0ac851c6d3f51d5a9658b91664710ddc5 Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Thu, 10 Oct 2013 01:37:30 +0000 Subject: [PATCH] Correct a variable typo in [25750]. See #22704 git-svn-id: https://develop.svn.wordpress.org/trunk@25751 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/update.php b/src/wp-includes/update.php index 65489deb4f..b6aed5db23 100644 --- a/src/wp-includes/update.php +++ b/src/wp-includes/update.php @@ -40,7 +40,7 @@ function wp_version_check( $extra_stats = array() ) { // Wait 60 seconds between multiple version check requests $timeout = 60; $time_not_changed = isset( $current->last_checked ) && $timeout > ( time() - $current->last_checked ); - if ( $time_not_changed && empty( $extra_args ) ) + if ( $time_not_changed && empty( $extra_stats ) ) return false; $locale = get_locale();