diff --git a/wp-admin/options.php b/wp-admin/options.php index eb3a4d0abb..8510095e24 100644 --- a/wp-admin/options.php +++ b/wp-admin/options.php @@ -322,9 +322,10 @@ if ( 'update' === $action ) { // We are saving settings sent from a settings pag 'options.php', '2.7.0', sprintf( - /* translators: %s: The option/setting. */ - __( 'The %s setting is unregistered. Unregistered settings are deprecated. See https://developer.wordpress.org/plugins/settings/settings-api/' ), - '' . esc_html( $option ) . '' + /* translators: 1: The option/setting, 2: Documentation URL. */ + __( 'The %1$s setting is unregistered. Unregistered settings are deprecated. See documentation on the Settings API.' ), + '' . esc_html( $option ) . '', + __( 'https://developer.wordpress.org/plugins/settings/settings-api/' ) ) ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index fa17634c02..f4d4d9094c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.6-alpha-58139'; +$wp_version = '6.6-alpha-58140'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.