You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My site just upgraded to 4.9.2 but s2member's patches could not verify one file:
-->Your /wp-admin/user-new.php file could NOT be patched. Unverifiable.
The line s2member is expecting is: wpmu_signup_user( $new_user_login, $_REQUEST[ 'email' ], array( 'add_to_blog' => $wpdb->blogid, 'new_role' => $_REQUEST[ 'role' ] ) );
The line has now been changed to read: wpmu_signup_user( $new_user_login, $new_user_email, array( 'add_to_blog' => get_current_blog_id(), 'new_role' => $_REQUEST['role'] ) );
Please update the search script to account for this change. I'd love to see this file patched automatically again. Thanks!