[TRUNK][UPDATE]

- repaires ng-parties regex conditions for parameter 'name'

git-svn-id: https://svn.libreccm.org/ccm/trunk@4725 8810af33-2d31-482b-a856-94f89814c4df
master
tosmers 2017-05-10 17:18:26 +00:00
parent c6d4c5c88b
commit a27a938489
1 changed files with 3 additions and 1 deletions

View File

@ -42,7 +42,9 @@ public class Party {
public Party(final com.arsdigita.kernel.Party trunkParty) {
this.partyId = trunkParty.getID().longValue();
this.name = trunkParty.getName();
this.name = trunkParty.getName().
replace(" ", "_").
replace(".", "_");
this.roleMemberships = new HashSet<>();