diff --git a/wp-admin/options-general.php b/wp-admin/options-general.php index e0e5e5f95e..9b86569323 100644 --- a/wp-admin/options-general.php +++ b/wp-admin/options-general.php @@ -102,7 +102,12 @@ include( ABSPATH . 'wp-admin/admin-header.php' ); $new_admin_email = get_option( 'new_admin_email' ); if ( $new_admin_email && $new_admin_email != get_option('admin_email') ) : ?>
-

%1$s. Cancel'), esc_html( $new_admin_email ), esc_url( admin_url( 'options.php?dismiss=new_admin_email' ) ) ); ?>

+

Cancel' ), + '' . esc_html( $new_admin_email ) . '', + esc_url( admin_url( 'options.php?dismiss=new_admin_email' ) ) + ); +?>

@@ -137,9 +142,17 @@ if ( empty($tzstring) ) { // Create a UTC+- zone if no timezone string exists - UTC time is %s'), date_i18n($timezone_format, false, 'gmt')); ?> + UTC time is %s' ), + '' . date_i18n( $timezone_format, false, 'gmt' ) . '' + ); + ?> - %1$s'), date_i18n($timezone_format)); ?> + ' . date_i18n( $timezone_format ) . '' + ); + ?>

diff --git a/wp-includes/version.php b/wp-includes/version.php index 52e4bef4e1..00e9f6cf86 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34293'; +$wp_version = '4.4-alpha-34294'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.