Ticket #16861: user_new.diff
File user_new.diff, 481 bytes (added by , 14 years ago) |
---|
-
wp-admin/user-new.php
31 31 add_filter( 'wpmu_signup_user_notification_email', 'admin_created_user_email' ); 32 32 33 33 function admin_created_user_subject( $text ) { 34 return "[" . get_bloginfo('name') . "] Your site invite";34 return sprintf( __( '[ %s ] Your site invite' ), get_bloginfo( 'name' ) ); 35 35 } 36 36 } 37 37