Users: Coding standards fixes after [50228].

See #52238

Built from https://develop.svn.wordpress.org/trunk@50229


git-svn-id: http://core.svn.wordpress.org/trunk@49890 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2021-02-05 14:43:03 +00:00
parent 523e292d8c
commit 9cd08881ba
2 changed files with 2 additions and 2 deletions

View File

@ -300,7 +300,7 @@ class WP_Users_List_Table extends WP_List_Table {
<select name="<?php echo $id; ?>" id="<?php echo $id; ?>">
<option value=""><?php _e( 'Change role to&hellip;' ); ?></option>
<?php wp_dropdown_roles(); ?>
<option value="none"><?php echo __( '&mdash; No role for this site &mdash;' ) ?> </option>
<option value="none"><?php _e( '&mdash; No role for this site &mdash;' ); ?></option>
</select>
<?php
submit_button( __( 'Change' ), '', $button_id, false );

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.7-beta1-50228';
$wp_version = '5.7-beta1-50229';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.