diff --git a/wp-admin/includes/class-custom-image-header.php b/wp-admin/includes/class-custom-image-header.php index 3716b55909..e8a16e47dc 100644 --- a/wp-admin/includes/class-custom-image-header.php +++ b/wp-admin/includes/class-custom-image-header.php @@ -1547,8 +1547,8 @@ endif; $already_has_default = false; - foreach ( $this->default_headers as $k => $h ) { - if ( $h['url'] === $default ) { + foreach ( $this->default_headers as $k => $header ) { + if ( $header['url'] === $default ) { $already_has_default = true; break; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 9da7a553d6..2c331fa91d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.9-alpha-60969'; +$wp_version = '6.9-alpha-60970'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.