diff --git a/wp-admin/maint/repair.php b/wp-admin/maint/repair.php
index 4a1bede387..8127960560 100644
--- a/wp-admin/maint/repair.php
+++ b/wp-admin/maint/repair.php
@@ -28,7 +28,7 @@ header( 'Content-Type: text/html; charset=utf-8' );
if ( ! defined( 'WP_ALLOW_REPAIR' ) ) {
- echo '
' . __( 'Allow automatic repair database' ) . '
';
+ echo '' . __( 'Allow automatic database repair' ) . '
';
echo '' . __( 'To allow use of this page to automatically repair database problems, please add the following line to your wp-config.php file. Once this line is added to your config, reload this page.' ) . "
define('WP_ALLOW_REPAIR', true);
";
@@ -64,7 +64,7 @@ if ( ! defined( 'WP_ALLOW_REPAIR' ) ) {
} elseif ( isset( $_GET['repair'] ) ) {
- echo '' . __( 'Results database repair' ) . '
';
+ echo '' . __( 'Database repair results' ) . '
';
$optimize = 2 == $_GET['repair'];
$okay = true;
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 62ba6676e0..5342ef2953 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
-$wp_version = '4.4-beta2-35518';
+$wp_version = '4.4-beta2-35519';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.