Skip to content

Commit

Permalink
Correct a variable typo in [25750]. See #22704
Browse files Browse the repository at this point in the history
Built from https://develop.svn.wordpress.org/trunk@25751


git-svn-id: http://core.svn.wordpress.org/trunk@25664 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
dd32 committed Oct 10, 2013
1 parent 0b9f198 commit 98762b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wp-includes/update.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 98762b4

Please sign in to comment.