瀏覽代碼

Capitalize ville inscription

Arthur Brandao 5 年之前
父節點
當前提交
b61110e27a
共有 1 個文件被更改,包括 1 次插入0 次删除
  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;