Correct a variable typo in [25750]. See #22704

git-svn-id: https://develop.svn.wordpress.org/trunk@25751 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dion Hulse 2013-10-10 01:37:30 +00:00
parent e03279e8b0
commit 05cceca0ac
1 changed files with 1 additions and 1 deletions

View File

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