From 640cc8194971d5a75a2ddc7c68435561e9d5d3e9 Mon Sep 17 00:00:00 2001 From: Helen Hou-Sandi Date: Wed, 5 Mar 2014 19:19:52 +0000 Subject: [PATCH] Indicate that the user deletion process affects all content attributed to a given user, not just posts. props seanchayes. fixes #26709. git-svn-id: https://develop.svn.wordpress.org/trunk@27416 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/network/users.php | 8 ++++---- src/wp-admin/users.php | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/wp-admin/network/users.php b/src/wp-admin/network/users.php index fd50b21823..39e8168124 100644 --- a/src/wp-admin/network/users.php +++ b/src/wp-admin/network/users.php @@ -22,7 +22,7 @@ function confirm_delete_users( $users ) { return false; ?>

-

+

-

%s?" ), $delete_user->user_login ); ?>

+

%s?" ), $delete_user->user_login ); ?>

$details ) { $blog_users = get_users( array( 'blog_id' => $details->userblog_id, 'fields' => array( 'ID', 'user_login' ) ) ); @@ -65,9 +65,9 @@ function confirm_delete_users( $users ) {
  • +
  • + ' . $user_dropdown; ?>
' . __('Hovering over a row in the users list will display action li '
  • ' . __('Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.') . '
  • '; if ( is_multisite() ) - $help .= '
  • ' . __( 'Remove allows you to remove a user from your site. It does not delete their posts. You can also remove multiple users at once by using Bulk Actions.' ) . '
  • '; + $help .= '
  • ' . __( 'Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using Bulk Actions.' ) . '
  • '; else - $help .= '
  • ' . __( 'Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their posts. You can also delete multiple users at once by using Bulk Actions.' ) . '
  • '; + $help .= '
  • ' . __( 'Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using Bulk Actions.' ) . '
  • '; $help .= ''; @@ -240,12 +240,12 @@ case 'delete': ?> -

    +

    • +
    • - ' . __( 'Attribute all posts to:' ) . ' '; + ' . __( 'Attribute all content to:' ) . ' '; wp_dropdown_users( array( 'name' => 'reassign_user', 'exclude' => array_diff( $userids, array($current_user->ID) ) ) ); ?>