diff --git a/wp-admin/includes/class-wp-plugin-install-list-table.php b/wp-admin/includes/class-wp-plugin-install-list-table.php index 21922b7943..1a318d374b 100644 --- a/wp-admin/includes/class-wp-plugin-install-list-table.php +++ b/wp-admin/includes/class-wp-plugin-install-list-table.php @@ -626,7 +626,7 @@ class WP_Plugin_Install_List_Table extends WP_List_Table { } elseif ( ! $compatible_wp ) { $incompatible_notice_message .= __( 'This plugin does not work with your version of WordPress.' ); if ( current_user_can( 'update_core' ) ) { - $incompatible_notice_message .= printf( + $incompatible_notice_message .= sprintf( /* translators: %s: URL to WordPress Updates screen. */ ' ' . __( 'Please update WordPress.' ), self_admin_url( 'update-core.php' ) diff --git a/wp-includes/version.php b/wp-includes/version.php index d5c8ce5e06..4ad3ea0e8c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.6-beta3-58444'; +$wp_version = '6.6-beta3-58446'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.