diff --git a/wp-admin/themes.php b/wp-admin/themes.php index fb9c21922d..6aa129d765 100644 --- a/wp-admin/themes.php +++ b/wp-admin/themes.php @@ -177,7 +177,7 @@ endif; $ct = wp_get_theme(); if ( $ct->errors() && ( ! is_multisite() || current_user_can( 'manage_network_themes' ) ) ) { - echo '

' . sprintf( __( 'ERROR: %s' ), $ct->errors()->get_error_message() ) . '

'; + echo '

' . __( 'ERROR:' ) . ' ' . $ct->errors()->get_error_message() . '

'; } /* diff --git a/wp-includes/version.php b/wp-includes/version.php index 8c27ab6e32..031643db8a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-beta4-39306'; +$wp_version = '4.7-beta4-39307'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.