]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/maint/repair.php
WordPress 4.4
[autoinstalls/wordpress.git] / wp-admin / maint / repair.php
index 791450258b29f3c7eaa85f3b2931d761bc8c6078..7849ff9494f7ec481ec0f9ee7d169bd58d5113ff 100644 (file)
@@ -16,17 +16,21 @@ header( 'Content-Type: text/html; charset=utf-8' );
 <head>
        <meta name="viewport" content="width=device-width" />
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+       <meta name="robots" content="noindex,nofollow" />
        <title><?php _e( 'WordPress &rsaquo; Database Repair' ); ?></title>
        <?php
        wp_admin_css( 'install', true );
        ?>
 </head>
 <body class="wp-core-ui">
-<h1 id="logo"><a href="<?php echo esc_url( __( 'https://wordpress.org/' ) ); ?>" tabindex="-1"><?php _e( 'WordPress' ); ?></a></h1>
+<p id="logo"><a href="<?php echo esc_url( __( 'https://wordpress.org/' ) ); ?>" tabindex="-1"><?php _e( 'WordPress' ); ?></a></p>
 
 <?php
 
 if ( ! defined( 'WP_ALLOW_REPAIR' ) ) {
+
+       echo '<h1 class="screen-reader-text">' . __( 'Allow automatic database repair' ) . '</h1>';
+
        echo '<p>' . __( 'To allow use of this page to automatically repair database problems, please add the following line to your <code>wp-config.php</code> file. Once this line is added to your config, reload this page.' ) . "</p><p><code>define('WP_ALLOW_REPAIR', true);</code></p>";
 
        $default_key     = 'put your unique phrase here';
@@ -52,11 +56,17 @@ if ( ! defined( 'WP_ALLOW_REPAIR' ) ) {
        $duplicated_keys = array_filter( $duplicated_keys );
 
        if ( $duplicated_keys || $missing_key ) {
+
+               echo '<h2 class="screen-reader-text">' . __( 'Check secret keys' ) . '</h2>';
+
                // Translators: 1: wp-config.php; 2: Secret key service URL.
                echo '<p>' . sprintf( __( 'While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the <a href="%2$s">WordPress.org secret key service</a>.' ), '<code>wp-config.php</code>', 'https://api.wordpress.org/secret-key/1.1/salt/' ) . '</p>';
        }
 
 } elseif ( isset( $_GET['repair'] ) ) {
+
+       echo '<h1 class="screen-reader-text">' . __( 'Database repair results' ) . '</h1>';
+
        $optimize = 2 == $_GET['repair'];
        $okay = true;
        $problems = array();
@@ -137,6 +147,9 @@ if ( ! defined( 'WP_ALLOW_REPAIR' ) ) {
                echo '<p>' . __( 'Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users.' ) . "</p><p><code>define('WP_ALLOW_REPAIR', true);</code></p>";
        }
 } else {
+
+       echo '<h1 class="screen-reader-text">' . __( 'WordPress database repair' ) . '</h1>';
+
        if ( isset( $_GET['referrer'] ) && 'is_blog_installed' == $_GET['referrer'] )
                echo '<p>' . __( 'One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the &#8220;Repair Database&#8221; button. Repairing can take a while, so please be patient.' ) . '</p>';
        else