Espec - Bolivariano - Restauração de senha. fixes bug#AL-4269

master
valdir.cordeiro 2024-06-27 17:31:33 -03:00
parent 9b9801f7b8
commit 1f81ebebba
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId> <groupId>br.com.rjconsultores</groupId>
<artifactId>ventaboletosadm</artifactId> <artifactId>ventaboletosadm</artifactId>
<version>1.92.2</version> <version>1.92.3</version>
<packaging>war</packaging> <packaging>war</packaging>
<properties> <properties>

View File

@ -127,8 +127,8 @@ public class LoginController extends MyGenericForwardComposer {
Messagebox.show(Labels.getLabel("winCambiaContrasena.MSG.EmailRecuperacaoSenhaEnviado"), Messagebox.show(Labels.getLabel("winCambiaContrasena.MSG.EmailRecuperacaoSenhaEnviado"),
Labels.getLabel("winCambiaContrasena.title"), Messagebox.OK, Messagebox.INFORMATION); Labels.getLabel("winCambiaContrasena.title"), Messagebox.OK, Messagebox.INFORMATION);
} catch (Exception ex) { } catch (Exception ex) {
log.error(ex.getLocalizedMessage()); log.error("Erro: ", ex);
Clients.alert(ex.getLocalizedMessage(), Labels.getLabel("winCambiaContrasena.title"), Messagebox.INFORMATION); Clients.alert(ex.getLocalizedMessage() + " -> " + ex.getStackTrace().toString(), Labels.getLabel("winCambiaContrasena.title"), Messagebox.INFORMATION);
} }
} }