From b5542c6b1b41d69b4e5c26ef8280c6e85de67224 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 7 Mar 2019 10:17:52 +0000 Subject: [PATCH] Theme Editor: Capitalize "Think very carefully about your site crashing..." message for consistency with other strings. Props immeet94. Fixes #46436. Built from https://develop.svn.wordpress.org/trunk@44811 git-svn-id: http://core.svn.wordpress.org/trunk@44643 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/theme-editor.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/theme-editor.php b/wp-admin/theme-editor.php index 8135ddb90a..bf3dcd0677 100644 --- a/wp-admin/theme-editor.php +++ b/wp-admin/theme-editor.php @@ -36,7 +36,7 @@ get_current_screen()->add_help_tab( '
  • ' . __( 'Screen reader users: when in forms mode, you may need to press the Esc key twice.' ) . '
  • ' . '' . '

    ' . __( 'After typing in your edits, click Update File.' ) . '

    ' . - '

    ' . __( 'Advice: think very carefully about your site crashing if you are live-editing the theme currently in use.' ) . '

    ' . + '

    ' . __( 'Advice: Think very carefully about your site crashing if you are live-editing the theme currently in use.' ) . '

    ' . /* translators: %s: link to codex article about child themes */ '

    ' . sprintf( __( 'Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a child theme instead.' ), __( 'https://codex.wordpress.org/Child_Themes' ) ) . '

    ' . ( is_network_admin() ? '

    ' . __( 'Any edits to files from this screen will be reflected on all sites in the network.' ) . '

    ' : '' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index 6aa10dcc86..028fd291e8 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.2-alpha-44810'; +$wp_version = '5.2-alpha-44811'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.