Explorar el Código

Capitalize ville inscription

Arthur Brandao hace 5 años
padre
commit
b61110e27a
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      src/microfolie/entry/form/Inscription.java

+ 1 - 0
src/microfolie/entry/form/Inscription.java

@@ -100,6 +100,7 @@ public class Inscription extends ActionSupport {
 
 	@Override
 	public String execute() throws Exception {
+		ville = ville.substring(0, 1).toUpperCase() + ville.substring(1).toLowerCase();
 		UsagerDTO usager = new UsagerDTO(nom, prenom, genre, naissance, ville, situation, email, telephone, urgence);
 		service.add(usager);
 		return SUCCESS;