diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 1020ffcfa4..ec6cc616dc 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -9193,8 +9193,11 @@ function wp_unique_id_from_values( array $data, string $prefix = '' ): string { if ( empty( $data ) ) { _doing_it_wrong( __FUNCTION__, - // translators: '$data' is the parameter name and must not be translated. - __( 'The $data argument must not be empty.' ), + sprintf( + /* translators: %s: parameter name. */ + __( 'The %s argument must not be empty.' ), + '$data' + ), '6.8.0' ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index e33f5b142b..b5486e1398 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.8-beta3-60084'; +$wp_version = '6.8-beta3-60085'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.