]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/maint/repair.php
WordPress 4.6.3
[autoinstalls/wordpress.git] / wp-admin / maint / repair.php
index 7849ff9494f7ec481ec0f9ee7d169bd58d5113ff..aa7028878b6459712dc9923c3f50521fbc778ed9 100644 (file)
@@ -31,7 +31,13 @@ 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>";
+       echo '<p>';
+       printf(
+               /* translators: %s: wp-config.php */
+               __( 'To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page.' ),
+               '<code>wp-config.php</code>'
+       );
+       echo "</p><p><code>define('WP_ALLOW_REPAIR', true);</code></p>";
 
        $default_key     = 'put your unique phrase here';
        $missing_key     = false;
@@ -80,7 +86,7 @@ if ( ! defined( 'WP_ALLOW_REPAIR' ) ) {
        }
 
        /**
-        * Filter additional database tables to repair.
+        * Filters additional database tables to repair.
         *
         * @since 3.0.0
         *