Users: Give the Password Reset table row its own wrapper class.
Previously, the class of the Sessions table row was duplicated. Follow-up to [50129], [50411]. See #52597. Built from https://develop.svn.wordpress.org/trunk@50412 git-svn-id: http://core.svn.wordpress.org/trunk@50023 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e0b66dd56c
commit
af9675bdcb
|
@ -674,7 +674,7 @@ endif;
|
||||||
// Allow admins to send reset password link.
|
// Allow admins to send reset password link.
|
||||||
if ( ! IS_PROFILE_PAGE ) :
|
if ( ! IS_PROFILE_PAGE ) :
|
||||||
?>
|
?>
|
||||||
<tr class="user-sessions-wrap hide-if-no-js">
|
<tr class="user-generate-reset-link-wrap hide-if-no-js">
|
||||||
<th><?php _e( 'Password Reset' ); ?></th>
|
<th><?php _e( 'Password Reset' ); ?></th>
|
||||||
<td>
|
<td>
|
||||||
<div class="generate-reset-link">
|
<div class="generate-reset-link">
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.7-beta3-50411';
|
$wp_version = '5.7-beta3-50412';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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