BUG-13709 SOLVED Al activar la opción ADMIN -> Login / Enable Forgot password, el modulo de recuperación de password 'Forgot password' en la ventana de login, muestra el mensaje: 'WARNING: Invalid email address in FROM parameter (<>)' después de ingresar los datos de un usuario valido.

This commit is contained in:
Roly Rudy Gutierrez Pinto
2014-01-15 16:47:14 -04:00
parent 622a44764e
commit 272f00c3c3

View File

@@ -129,7 +129,7 @@ if ($userData['USR_EMAIL'] != '' && $userData['USR_EMAIL'] === $data['USR_EMAIL'
}
} else {
if ($userData['USR_AUTH_TYPE'] === '') {
$msg = G::LoadTranslation('ID_USER') . ' ' . htmlentities($data['USR_USERNAME'], ENT_QUOTES, 'UTF-8') . ' '. G::LoadTranslation('ID_IS_NOT_REGISTERED');
$msg = G::LoadTranslation('ID_USER') . ' ' . htmlentities($data['USR_USERNAME'], ENT_QUOTES, 'UTF-8') . ' '. G::LoadTranslation('ID_IS_NOT_REGISTERED');
} else {
$msg = G::LoadTranslation('ID_USER_NOT_FUNCTIONALITY');
}