Coding Standards: Fix some WPCS errors and warnings in `wp-admin/user-edit.php`:
* Add missing translators comment. * Add missing space, correct indentation. * Put opening and closing PHP tag on a line by itself. * Remove unnecessary escaping for consistency with other strings. Follow-up to [51980]. See #53658. Built from https://develop.svn.wordpress.org/trunk@51988 git-svn-id: http://core.svn.wordpress.org/trunk@51577 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
88e9e36233
commit
1fdea15a96
|
@ -796,14 +796,17 @@ endif;
|
||||||
$application_passwords_list_table->display();
|
$application_passwords_list_table->display();
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
<?php else: ?>
|
<?php else : ?>
|
||||||
<p><?php esc_html_e( 'The application password feature requires HTTPS, which is not enabled on this site.' ); ?></p>
|
<p><?php _e( 'The application password feature requires HTTPS, which is not enabled on this site.' ); ?></p>
|
||||||
<p><?php
|
<p>
|
||||||
printf(
|
<?php
|
||||||
__( 'If this is a development website you can <a href="%s" target="_blank">set the environment type accordingly</a> to enable application passwords.' ),
|
printf(
|
||||||
__( 'https://wordpress.org/support/article/editing-wp-config-php/#wp_environment_type' )
|
/* translators: %s: Documentation URL. */
|
||||||
);
|
__( 'If this is a development website you can <a href="%s" target="_blank">set the environment type accordingly</a> to enable application passwords.' ),
|
||||||
?></p>
|
__( 'https://wordpress.org/support/article/editing-wp-config-php/#wp_environment_type' )
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.9-alpha-51985';
|
$wp_version = '5.9-alpha-51988';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue