- fix space in username after reset password with SMTP

This commit is contained in:
ashubawork
2024-04-01 16:37:33 +03:00
parent 35b470e928
commit 3029b2581d
+1 -1
View File
@@ -57,7 +57,7 @@ if ( ! class_exists( 'um\core\Password' ) ) {
array(
'act' => 'reset_password',
'hash' => $reset_key,
'login' => $user_data->user_login,
'login' => rawurlencode( $user_data->user_login ),
),
um_get_core_page( 'password-reset' )
);