diff --git a/wp-admin/options.php b/wp-admin/options.php index a4809cf618..6bad0fd61f 100644 --- a/wp-admin/options.php +++ b/wp-admin/options.php @@ -194,8 +194,15 @@ if ( 'update' == $action ) { if ( $options ) { foreach ( $options as $option ) { - if ( $unregistered ) - _deprecated_argument( 'options.php', '2.7', sprintf( __( 'The %1$s setting is unregistered. Unregistered settings are deprecated. See https://codex.wordpress.org/Settings_API' ), $option, $option_page ) ); + if ( $unregistered ) { + _deprecated_argument( 'options.php', '2.7', + sprintf( + /* translators: %s: the option/setting */ + __( 'The %s setting is unregistered. Unregistered settings are deprecated. See https://codex.wordpress.org/Settings_API' ), + '' . $option . '' + ) + ); + } $option = trim( $option ); $value = null; diff --git a/wp-includes/version.php b/wp-includes/version.php index 4b9d30ed14..abf171d19a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34314'; +$wp_version = '4.4-alpha-34315'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.