Make WordPress Core

Ticket #18291: 18291.patch

File 18291.patch, 1.3 KB (added by SergeyBiryukov, 12 years ago)
  • wp-admin/user-new.php

     
    2121                /* translators: 1: Site name, 2: site URL, 3: role */
    2222                return sprintf( __( 'Hi,
    2323You\'ve been invited to join \'%1$s\' at
    24 %2$s as a %3$s.
     24%2$s with the role of %3$s.
    2525If you do not want to join this site please ignore
    2626this email. This invitation will expire in a few days.
    2727
     
    7272                } else {
    7373                        $newuser_key = substr( md5( $user_id ), 0, 5 );
    7474                        add_option( 'new_user_' . $newuser_key, array( 'user_id' => $user_id, 'email' => $user_details->user_email, 'role' => $_REQUEST[ 'role' ] ) );
    75                         $message = __("Hi,\n\nYou have been invited to join '%s' at\n%s as a %s.\nPlease click the following link to confirm the invite:\n%s\n");
     75                        $message = __("Hi,\n\nYou have been invited to join '%s' at\n%s with the role of %s.\nPlease click the following link to confirm the invite:\n%s\n");
    7676                        wp_mail( $new_user_email, sprintf( __( '[%s] Joining confirmation' ), get_option( 'blogname' ) ),  sprintf($message, get_option('blogname'), site_url(), $_REQUEST[ 'role' ], site_url("/newbloguser/$newuser_key/")));
    7777                        $redirect = add_query_arg( array('update' => 'add'), 'user-new.php' );
    7878                }