trim logins, change second secretary and add person mailto field

This commit is contained in:
2023-03-11 22:37:58 +01:00
parent 872be824c2
commit 6d12e6b9e2
4 changed files with 7 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ public class ProfileBean implements Serializable {
}
public String getUsername() {
return username;
return username == null ? null : username.trim();
}
public void setUsername(String username) {