881491b5 by Jeff Balicki

$wp_usr_id

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 19feb1d8
......@@ -299,11 +299,11 @@ add_action( 'profile_update', function ( $user_id, $old_user_data ) {
}
add_action( 'wpo365/user/creating', 'registration_redirect', 10, 3 );
add_action( 'wpo365/user/creating', 'registration_redirect', 10, 1 );
function registration_redirect() {
function registration_redirect($wp_usr_id) {
error_log('registration_redirect');
error_log('registration_redirect'.$wp_usr_id);
wp_redirect(site_url('/account/profile/'));
......