diff --git a/src/wp-admin/user-new.php b/src/wp-admin/user-new.php index 4915960027..e039d711ef 100644 --- a/src/wp-admin/user-new.php +++ b/src/wp-admin/user-new.php @@ -348,8 +348,11 @@ if ( is_multisite() ) { </tr> <?php if ( current_user_can( 'manage_network_users' ) ) { ?> <tr> - <th scope="row"><label for="adduser-noconfirmation"><?php _e('Skip Confirmation Email') ?></label></th> - <td><label for="adduser-noconfirmation"><input type="checkbox" name="noconfirmation" id="adduser-noconfirmation" value="1" /> <?php _e( 'Add the user without sending an email that requires their confirmation.' ); ?></label></td> + <th scope="row"><?php _e( 'Skip Confirmation Email' ); ?></th> + <td> + <input type="checkbox" name="noconfirmation" id="adduser-noconfirmation" value="1" /> + <label for="adduser-noconfirmation"><?php _e( 'Add the user without sending an email that requires their confirmation.' ); ?></label> + </td> </tr> <?php } ?> </table> @@ -462,7 +465,10 @@ $new_user_ignore_pass = $creating && isset( $_POST['noconfirmation'] ) ? wp_unsl </tr> <tr> <th scope="row"><?php _e( 'Send User Notification' ) ?></th> - <td><label for="send_user_notification"><input type="checkbox" name="send_user_notification" id="send_user_notification" value="1" <?php checked( $new_user_send_notification ); ?> /> <?php _e( 'Send the new user an email about their account.' ); ?></label></td> + <td> + <input type="checkbox" name="send_user_notification" id="send_user_notification" value="1" <?php checked( $new_user_send_notification ); ?> /> + <label for="send_user_notification"><?php _e( 'Send the new user an email about their account.' ); ?></label> + </td> </tr> <?php } // !is_multisite ?> <tr class="form-field"> @@ -478,8 +484,11 @@ $new_user_ignore_pass = $creating && isset( $_POST['noconfirmation'] ) ? wp_unsl </tr> <?php if ( is_multisite() && current_user_can( 'manage_network_users' ) ) { ?> <tr> - <th scope="row"><label for="noconfirmation"><?php _e('Skip Confirmation Email') ?></label></th> - <td><label for="noconfirmation"><input type="checkbox" name="noconfirmation" id="noconfirmation" value="1" <?php checked( $new_user_ignore_pass ); ?> /> <?php _e( 'Add the user without sending an email that requires their confirmation.' ); ?></label></td> + <th scope="row"><?php _e( 'Skip Confirmation Email' ); ?></th> + <td> + <input type="checkbox" name="noconfirmation" id="noconfirmation" value="1" <?php checked( $new_user_ignore_pass ); ?> /> + <label for="noconfirmation"><?php _e( 'Add the user without sending an email that requires their confirmation.' ); ?></label> + </td> </tr> <?php } ?> </table>