From c6c366fec0cf45552ed9bc03ee81ff7f59652c34 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 4 Nov 2015 21:32:26 +0000 Subject: [PATCH] Adjust some of the strings added in [35508]. Fixes #34519. Built from https://develop.svn.wordpress.org/trunk@35519 git-svn-id: http://core.svn.wordpress.org/trunk@35483 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/maint/repair.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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.