diff --git a/src/wp-admin/maint/repair.php b/src/wp-admin/maint/repair.php index 85494fb717..6b99fe4939 100644 --- a/src/wp-admin/maint/repair.php +++ b/src/wp-admin/maint/repair.php @@ -31,7 +31,13 @@ if ( ! defined( 'WP_ALLOW_REPAIR' ) ) { 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);

"; + echo '

'; + printf( + /* translators: %s: File name. */ + __( '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.' ), + 'wp-config.php' + ); + echo "

define('WP_ALLOW_REPAIR', true);

"; $default_key = 'put your unique phrase here'; $missing_key = false;