From 1f59a960d21bd8ee397f89f53c50d6853960674a Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 4 Nov 2015 21:31:05 +0000 Subject: [PATCH] Adjust some of the strings added in [35508]. Fixes #34519. git-svn-id: https://develop.svn.wordpress.org/trunk@35519 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/maint/repair.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/maint/repair.php b/src/wp-admin/maint/repair.php index 4a1bede387..8127960560 100644 --- a/src/wp-admin/maint/repair.php +++ b/src/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;