Bug in rpr-signup.php – custom confirm email does not get sent
-
There is a bug if you use custom messages, in function filter_wpmu_signup_user_notification at about line 777.
public /*.bool.*/ function filter_wpmu_signup_user_notification( /*.string.*/ $user, /*.string.*/ $user_email, /*.string.*/ $key, /*.array[string]string.*/ $meta ) {
global $register_plus_redux;
if ( '1' !== $register_plus_redux->rpr_get_option( 'verify_user_email' ) ) {
$_REQUEST['key'] = $key;
}
return TRUE;
$admin_email = get_site_option( 'admin_email' );
if ( $admin_email == '' )
$admin_email = 'support@' . $_SERVER['SERVER_NAME'];
$from_name = get_site_option( 'site_name' ) == '' ? 'WordPress' : esc_html( get_site_option( 'site_name' ) );
so the lines below the return TRUE can never be executed
- The topic ‘Bug in rpr-signup.php – custom confirm email does not get sent’ is closed to new replies.