Make WordPress Core


Ignore:
Timestamp:
09/10/2015 09:32:46 PM (10 years ago)
Author:
wonderboymusic
Message:

Move 2 ad hoc user admin functions:

  • Move use_ssl_preference() from wp-admin/user-edit.php to wp-admin/includes/user.php.
  • Move admin_created_user_email() from wp-admin/user-new.php to wp-admin/includes/user.php.

See #33813.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/user-new.php

    r33988 r34021  
    2727
    2828if ( is_multisite() ) {
    29     /**
    30      *
    31      * @param string $text
    32      * @return string
    33      */
    34     function admin_created_user_email( $text ) {
    35         $roles = get_editable_roles();
    36         $role = $roles[ $_REQUEST['role'] ];
    37         /* translators: 1: Site name, 2: site URL, 3: role */
    38         return sprintf( __( 'Hi,
    39 You\'ve been invited to join \'%1$s\' at
    40 %2$s with the role of %3$s.
    41 If you do not want to join this site please ignore
    42 this email. This invitation will expire in a few days.
    43 
    44 Please click the following link to activate your user account:
    45 %%s' ), get_bloginfo( 'name' ), home_url(), wp_specialchars_decode( translate_user_role( $role['name'] ) ) );
    46     }
    4729    add_filter( 'wpmu_signup_user_notification_email', 'admin_created_user_email' );
    4830}
Note: See TracChangeset for help on using the changeset viewer.