diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index f0fa490ca9..46d023acb3 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -2154,7 +2154,7 @@ function wp_get_archives( $args = '' ) { if ( $results ) { $after = $parsed_args['after']; foreach ( (array) $results as $result ) { - if ( $result->week != $arc_w_last ) { + if ( $result->week !== $arc_w_last ) { $arc_year = $result->yr; $arc_w_last = $result->week; $arc_week = get_weekstartend( $result->yyyymmdd, get_option( 'start_of_week' ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 64a36e394e..0d764b8216 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.8-alpha-59773'; +$wp_version = '6.8-alpha-59774'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.